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: