Question: Write a program that performs the following: (1) ask user to enter the prices (in float data type) of banana, apple, and orange, respectively. -
Write a program that performs the following: (1) ask user to enter the prices (in float data type) of banana, apple, and orange, respectively. - (2) calculate the average price of these three fruits. - (3) use the format function to round their average price to one decimal place. - (4) concatenate the dollar symbol \$ to the left of the formatted average price (string concatenation must be used), and print out the result as shown in the screenshot below. [Run your program in Python IDLE to get rid of syntax errors and verify if the program works correctly as described above. Program that cannot run due to syntax error(s) will receive 0 point.] How much is a banana: 0.5 How much is an apple: 0.8 How much is an orange: 0.7 The formatted average price is: $0.7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
