Basic Python I
Basic Python 2
Conditionals
Loops
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?
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?

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?

400

An input always brings in information in this variable type.

What is a string?

400

This mathematical operator returns the remainder of two numbers.

What is modulus?

400

This formatting element is very important when using conditionals.

What is indentation?

400

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

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

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?