Get the answers you need at Westonci.ca, where our expert community is dedicated to providing you with accurate information. Ask your questions and receive accurate answers from professionals with extensive experience in various fields on our platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

Python

A video club wants to reward its best members with a discount based on the member’s number of
movie rentals and the number of new members referred by the member. The discount is in percent
and is equal to the sum of the rentals and the referrals, but it cannot exceed 75 percent. Write a
program to calculate the value of the discount and display it in percent considering two digits after
the decimal point. Hint: use min() function.

Here is a sample run:

Enter the number of movie rentals: 56
Enter the number of members referred to the video club: 3
The discount is equal to: 59.00 %


Note 1: the code should display five spaces between the colon (:) and the first digit of the discount
(use formatted output tools).
Note 2: Do not use if-else statements.

Sagot :

Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. Thanks for using our service. We're always here to provide accurate and up-to-date answers to all your queries. Find reliable answers at Westonci.ca. Visit us again for the latest updates and expert advice.