What is the name of the code that we create to store information in Python?
What is a variable?
The programming language that we are learning.
What is Python?
This operator combines two strings together.
What is the concatenation (+) operator?
A function that returns the length of a list.
What is len()?
What is the name of the first part of a variable called?
name = "Miller"
What is identifier?
What is the variable 'c' worth in this code:
a = 2
b = 5
c = a + b * a
What is 12?
A function that allows us to gather information from the user.
What is input()?
What is the name of the second part of a variable called?
name = "Miller"
What is an equal sign?
What is the variable 'c' worth in this code:
a = 3
b = 5
c = a > b
What is False?
This operator checks if the value on the left is the exact same as the value on the right.
What is the == operator?
Write the variable name and gather the user's input for their name.
What is
name = input("What is your name?")
or something similiar
What is the name of the third part of a variable called?
name = "Miller"
What is the value?
What is the variable 'c' worth in this code:
a = int(3)
b = int(4.5)
c = a + b
What is 7?
This conversion function will turn a string into an integer.
What is int()?
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
Is it best practice to name your variable after what is being stored inside of it?
What is yes/true?
The correct file extension of a Python file.
What is .py?