Match the Python version with the correct command to get user input.
By default, what kind of variable does input (and raw_input) return?
What is wrong with this code (assume we are using Python 3.x)?
input("What is your name? > ")print ("Hello {}.".format(name))Match the code with the conversion type.
What is the output?
age = 45height = 174.5print ("Age: " + age)
Match the output with the code.
x = 20.0y = 5.0
What is the output?
age = 45height = 174.5print("age + height")
Is the following an integer or a float?
age = 45Is the following an integer or a float?
height = 174.5Complete the sentence with the correct form of the verb in parentheses.
(EN MINÚSCULAS, SIN PUNTO AL FINAL Y SIN CONTRAER LOS VERBOS)
I ___ (call) you later, I promise.