Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Get detailed and accurate answers to your questions from a community of experts on our comprehensive Q&A platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A 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.