What symbol assigns a value to a variable?
What is =?
What function displays text?
What is print()?
What function gets user input?
What is input()?
What does + do?
What is addition?
What does this do:
name = input()
What is stores user input?
What does x = 10 do?
What is stores 10 in x?
What will this print:
print("Hello")
What is Hello?
What type is "hello"?
What is string?
What does * do?
What is multiplication?
What will this print:
num = int(input())
print(num + 5)
What is input plus 5?
Can variable names start with numbers?
What is no?
What will this print:
x = 5
print(x)
What is 5?
What type is 10?
What is integer?
What does / return?
What is a float?
What is wrong:
num = input()
print(num * 2)
What is it repeats text, not math?
Which is better variable name: a or user_age?
What is user_age?
What will this print:
print("Hi", "there")
What is Hi there?
How do you turn input into an integer?
What is int()?
What does // do?
What is integer division?
What will this print:
x = int(input())
y = int(input())
print(x + y)
What is sum of two numbers?
What error happens if you use a variable before defining it?
What is a NameError?
What will this print:
x = 3
y = 2
print(x * y)
What is 6?
Why does this fail?
age = input()
print(age + 1)
What is input is a string (needs conversion)?
What does % return?
What is remainder?
What does this program do:
num = int(input())
print(num % 2)
What is checks if number is even or odd?