Basic Python I
Basic Python 2
Conditionals
Loops
Lists
200

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

What is print?

200

This symbol is used for inline comments in Python.

What is #?

200

These are the two boolean variable values.

What are True and False?

200

This loop runs as long as a condition is true.

What is a while loop?
200

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

What is len()?

400

Some of its types include string, integer, and float

What is a variable?

400

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

What is "?

400

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

What is elif?

400

This command is used to exit a loop.

What is break?

400

To add an element to the end of a list

What is append()?

600

This command has a user type something into the program.

What is input()?

600

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

What is "a" * 3?

OR

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

600

This is the comparison operator for not equal.

What is !=?

600

Unless otherwise specified, for loops start at this number.

What is 0?

600

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

What is the index?

800

An input always brings in information in this variable type.

What is a string?

800

This mathematical operator returns the remainder of two numbers.

What is modulus?

800

This formatting element is very important when using conditionals.

What is indentation?

800

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

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

800

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

What is for i in list:

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

This is the golden rule of variables.

Hint: It's something you can never do.

What is combining strings and integers?

100000

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

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

100000

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

What is -1?

100000

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

What is students[2]?