comp
int
>>> numberAnswer = ______(answer)
Input processing output
Asking the user for four numbers is an example of _______ Finding the average of the four numbers is an example of _______ Telling the user the average is an example of _______
input()
The _______ function is used to acquire data from the user.
print()
The _______ function is used to display the program's output.
108.7
The value stored in weight is _______
print("You owe $" + str(moneyDue))
What can you change, if anything, in this line so that there will not be a space between the dollar sign and the amount of money due?
You owe $ 6.40
What will be the output of the following program? Assume the user responds with a 2.
The result is 7.0
What will be the output of the following program? Assume the user responds with a 5 for the first number and a 4 for the second number.
An error occurs.
What will be the output of the following program? Assume the user responds with a 5.
answer = input('How many sodas do you want? ') answer = input("How many sodas do you want? ")
Which statements will ask the user for a number? Select 2 options.
You owe $ 15.0
answer = input ("How many hamburgers would you like? ") priceBurger = 3.00 intNumberBurgers = float(answer) moneyDue = intNumberBurgers * priceBurger print ("You owe $", moneyDue)
You owe $12.0
answer = input ("How many shirts would you like? ") priceShirt = 4.00 intNumberShirt = float(answer) moneyDue = intNumberShirt * priceShirt print ("You owe $" + str(moneyDue))