147k views
0 votes
2. Write a program code using if...else if...else statement asking the user to enter an option between "Fiction" or "Nonfiction" books using upper case function. Accept number of copies from the user. Calculate and display the total price based on the following table Note: Total Price = Rate per book X No of copies

fiction 50
non fiction 30
other invalid​

1 Answer

1 vote

Answer:

option = input("Enter 'Fiction' or 'Nonfiction' book: ").upper()

copies = int(input("Enter number of copies: "))

if option == "FICTION":

rate_per_book = 50

total_price = rate_per_book * copies

print("Total price for " + str(copies) + " copies of fiction book: " + str(total_price))

elif option == "NONFICTION":

rate_per_book = 30

total_price = rate_per_book * copies

print("Total price for " + str(copies) + " copies of nonfiction book: " + str(total_price))

else:

print("Invalid option")

This code uses an if...elif...else statement to check the user's input for the option of "Fiction" or "Nonfiction" books. The input is converted to upper case using the upper() function to ensure that the user's input is not case-sensitive. The number of copies is accepted from the user as an integer, and the total price is calculated based on the rate per book and the number of copies. The total price is then displayed. If the user enters an invalid option, the code will print "Invalid option".

Step-by-step explanation:

User Candece
by
8.1k points