This type of variable represents whole numbers (e.g., 1, 2, 3..)
Integer
What is the operator = and what does it do?
Assignment - stores a value (e.g., x=5, means store the value 5 as x)
Programmers include comments in programs to ...
Explain how code operates
If you need to do the same thing a certain number of times, you should use a ______ loop.
FOR
This function lets the user type something in.
Input()
This type of variable represents only two values (i.e., TRUE or FALSE)
Boolean
What is this operator?
==
Compare to. Check if two things are the same.
What is a function?
A named block of code that performs a specific task and can be reused
This type of error occurs when a program does not follow the requirements of the programming language
A syntax error
This function displays output to the user
print()
This type of variable stores a sequence of characters (e.g. "The quick brown fox jumps over...")
String
What does IF do?
Checks a condition, and only does the step if the condition is true
How many total times will Karel move in this program?

6
If you need to do something for as long as a condition exists, you should use a _______ loop
While
Use this function to determine the type (e.g., string, int, float) of a specified variable
type()
This type of variable represents a number with a decimal part (e.g. 3.1415).
Float
What does ELSE do?
ELSE comes after an IF, and it is performed when the IF is not performed.
This is how you make a comment in python
Put a # at the start of the line.
Alternatively put """ at the start and """ at the end of a comment. This can make a comment cover multiple lines
If you need to determine whether something is true before doing something, you should use an ______ statement
IF
This keyword is used to define a function in Python
def
This type of variable stores a collection of items as a single variable (e.g., ages =[16, 26, 29])
List
What is this operator?
/
Division
What will be the output of this program?

5
This keyword is used to define a function in Python
This built-in Python function generates a sequence of numbers often used in loops, such as 0, 1, 2.
range()