Basic Python I
Basic Python 2
Conditionals
Loops
Lists
100

The command used to get something to show on the screen.

What is print?

100

This symbol is used for inline comments in Python.

What is #?

100

These are the two boolean variable values.

What are True and False?

100

This loop runs as long as a condition is true.

What is a while loop?
100

This function is used to turn the elements of a list into a number.

What is len()?

200

Some of its types include string, integer, and float

What is a variable?

200

When used 6 times, this symbol allows for multi-line comments in Python.

What is "?

200

This is the command used when there are three conditions to check.

What is elif?

200

This command is used to exit a loop.

What is break?

200

To add an element to the end of a list

What is append()?

300

This command has a user type something into the program.

What is input()?

300

This string command would turn "a" into "aaa."

What is "a" * 3?

OR

What is "a" + "a" + "a"?

300

This is the comparison operator for not equal.

What is !=?

300

Unless otherwise specified, for loops start at this number.

What is 0?

300

This is also known as the position of an item within a list.

What is the index?

300

An input always brings in information in this variable type.

What is a string?

300

This mathematical operator returns the remainder of two numbers.

What is modulus?

300

This formatting element is very important when using conditionals.

What is indentation?

300

This is the way you phrase a loop that should go 10 times.

What is "for i in range (10)"?

300

This is how you would traverse through all the elements in a list

What is for i in list:

500
Commands used to turn a string into an integer and an integer into a string.
What are int() and str()?
500

This is the golden rule of variables.

Hint: It's something you can never do.

What is combining strings and integers?

500

The difference between three "if" statements and an "if-elif-else" statement.

What is checks all three vs. checks until one is True?

500

This value can be added to the range for a loop to count backwards.

What is -1?

500

The correct syntax used when extracting the third element from a list named "students"

What is students[2]?

M
e
n
u