bill = 10 # The second if, else and elif statements are nested into the first if statement. print ("Adult tickets are £10") # changing the bill after each if/elif/else statement so the variable get ...
A customer is ordering food from a restaurant. If the total bill exceeds £50, they get a 10% discount. Write a program to calculate the final bill after applying the discount if applicable. Ask the ...