PYTHON 1Assume that price is an integer variable whose value

PYTHON

1.)Assume that price is an integer variable whose value is the price (in US currency) in cents of an item. Write a statement that prints the value of price in the form \"X dollars and Y cents\" on a line by itself. So, if the value of price was 4321, your code would print \"43 dollars and 21 cents\". If the value was 501 it would print \"5 dollars and 1 cents\". If the value was 99 your code would print \"0 dollars and 99 cents\".

2.)Write a statement that reads a floating point value from standard input into temperature.

3.)Write a statement that reads a word from standard input into firstWord.

Solution

Question 1:

Answer:

print str(price/100)+\" dollars and \"+str(price%100)+\" cents\"

Question 2:

Answer:

temperature = float(input(\"Enter the float value: \"))

Question 3:

Answer:

firstWord= raw_input(\"Enter the word: \")

PYTHON 1.)Assume that price is an integer variable whose value is the price (in US currency) in cents of an item. Write a statement that prints the value of pri

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site