Strings
if/elif/else
Lists and Input
Variables
Miscellaneous
100
These characters surround every string.
What are quotation marks?
100
This often used statement checks the truth value of a logical statement before executing lines of code.
What is an 'if' statement?
100
A data type that represents a sequence of values.
What is a List?
100

What is the name of the code that we create to store information in Python?

What is a variable?

100

The programming language that we are learning.

What is Python?

200

This operator combines two strings together.

What is the concatenation (+) operator?

200
This boolean operator checks if the value on the left is greater than the value on the right.
What is >?
200

A function that returns the length of a list.

What is len()?

200

What is the name of the first part of a variable called?


name = "Miller"

What is identifier?

200

What is the variable 'c' worth in this code:

a = 2

b = 5

c = a + b * a

What is 12?

300
Identify the letter printed from these lines of code: words = "Python Rules!" print(words[7])
What is 'R'?
300
This boolean operator checks if two values are not equal.
What is !=?
300

A function that allows us to gather information from the user.

What is input()?

300

What is the name of the second part of a variable called?


name = "Miller"

What is an equal sign?

300

What is the variable 'c' worth in this code:

a = 3

b = 5

c = a > b

What is False?

400
This would give the string "sal" from "Arsala"
What is "Arsala"[2:5] ?
400

This operator checks if the value on the left is the exact same as the value on the right.

What is the == operator?

400

Write the variable name and gather the user's input for their name.

What is 

name = input("What is your name?")


or something similiar


400

What is the name of the third part of a variable called?


name = "Miller"

What is the value?

400

What is the variable 'c' worth in this code:

a = int(3)

b = int(4.5)

c = a + b

What is 7?

500

This conversion function will turn a string into an integer.

What is int()?

500
This keyword is used to add additional branches to an if/else block. (HINT: it is always followed by a condition)
What is elif?
500

Write the code to gather the user's age and convert it to an integer.

What is

age = int(input("What is your age?"))


Or something similiar

500

Is it best practice to name your variable after what is being stored inside of it?

What is yes/true?

500

The correct file extension of a Python file.

What is .py?

M
e
n
u