Join the growing community of curious minds on IDNLearn.com. Ask your questions and receive comprehensive, trustworthy responses from our dedicated team of experts.
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 :
We value your participation in this forum. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. IDNLearn.com is dedicated to providing accurate answers. Thank you for visiting, and see you next time for more solutions.