At Westonci.ca, we make it easy to get the answers you need from a community of informed and experienced contributors. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately.

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.