What is the value of int('34') + 56?
What does input() hand your program?
print() shows a value on the screen.
Circle one: True False
What is the value of '50' * 3?
A shop program reads quantity 3 and price 5.0, then prints quantity times price. What prints?
Why does 8 * 0.25 print as 2.0 and not 2?
A program runs n = int(input()). The user types 8. It prints n times 1.5. What prints?
Answer: ______________
A program asks for two numbers and prints their sum, but 4 and 7 print as 47. What is the fix?