3.0 Terms and definitions from Course 7, Module 3

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:17 PM on 9/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

break

A keyword that lets a user escape a loop without triggering any ELSE statement that follows it in the loop

2
New cards

Concatenate

To link or join together

3
New cards

Escape character

A character that changes the typical behavior of the characters that follow it

4
New cards

For loop

A piece of code that iterates over a sequence of values

5
New cards

format()

A string method that formats and inserts specific substrings into designated places within a larger string

6
New cards

index()

A string method that outputs the index number of a character in a string

7
New cards

Indexing

A way to refer to the individual items within an iterable by their relative position

8
New cards

Iterable

An object that's looped, or iterated, over

9
New cards

Iteration

The repeated execution of a set of statements, where one iteration is the single execution of a block of code

10
New cards

Loop

A block of code used to carry out iterations

11
New cards

range()

A Python function that returns a sequence of numbers starting from zero, increments by 1 by default, and stops before the given number

12
New cards

String slice

A portion of a string that can contain more than one character; also referred to as a substring

13
New cards

While loop

A loop that instructs the computer to continuously execute the code based on the value of a condition