What does type mean?
Type returns the data stored to in a variable.
Finish this string so the output is I love string concatenation! a = "I love" b = ??? c = ??? print(c)
b = " string concatenation!" c = a + b
How do you always get a whole number when dividing in python?
Using floor division. Floor division does not round up, nor round down. It removes the decimal value from the answer.
Ex) a. a = 5 b = 2 print(a // b) 2
What is the value of “true”?
1