comp

Ace your homework & exams now with Quizwiz!

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))


Related study sets

biology class normal lecture exams

View Set

NU373 Week 1 EAQ Evolve Elsevier: Fluids and Electrolytes (F&E)

View Set

CNA 210 | Ch. 5, Networking & Server Attacks

View Set

AP Psychology Chapter 5: States of Consciousness Multiple Choice Part 2/2

View Set

Anders Behring Breivik: Norway court finds him sane. part1

View Set

chapter 15 - sustainability and the natural environment

View Set