Booleans and Expressions
Variables
Lists
General Python
String Operations
200

This expression evaluates to either True or False.

What is a Boolean?
200

This common variable type stores letters, numbers, and symbols.

What is the string type?

200

A list holds these things.

What are elements or items?

200

This character is used to comment a line in Python.

What is a pound (#) sign?

200

This character is used to mark the beginning and the end of a string.

What is the single (') or double quote (")?

400

This operator assigns a value to a variable.

What is the single equal (=)?

400

This common variable type stores decimal numbers.

What is the float type?

400

A list must be enclosed in these characters.

What are square brackets ([])?

400

This Python data structure contains a collection of items referenced by a numeric index.

What is a list?

400

This operator joins two strings together.

What is the concatenation (+) operator?

600

This operator compares two values.

What is the double equal (==)?

600

This common variable type stores whole numbers.

What is the integer type?

600

You must separate list items with this character.

What is a comma (,)?

600

This Python function is used to provide output to the user.

What is "print()"?

600

The information shown to the user from the following program:

a = “123”
b = “456”
print(b + a)

What is "456123"?

800

The result of this program:

a = 100
b = "science"
a > 75 and b == "science"

What is True?

800

This process converts one data type to another.

What is "casting"?

800

We use this to map to the position of an item in a list.

What is an index?

800

This Python function is used to get information from the user.

What is "input()"?

800

The information shown to the user from the following program:

words = "The red dog barks at midnight."
print( words[5] )

What is "e"?

1000

The result of this program:

x = 100
y = "science"
x > 75 or b != "science"

What is True?

1000

This function tells us what kind of information is stored in a specific variable.

What is "type()"?

1000

This error occurs when you try to use an index that is too large.

What is an “out of bounds” error?

1000

This error occurs when you have used the Python language incorrectly.

What is a syntax error?

1000

This string operator declares that the following character should be literally interpreted.

What is the backslash (\)?

M
e
n
u