Gurukul Vidyapeeth is a reputed institution in the field of academics and extra-curricular activities.
Every year, with the commencement of the new session, it hikes fee by 10% for all the students which
was manually done till date and required enormous efforts on the part of the office staff. To solve this
problem, develop a Python program that calculates this 10% fee hike every year automatically after
obtaining the basic fee amount from the user and displays it to the parents of the students enrolled with
the institute
Answers
Answered by
1
Hello
Answered by
1
Answer:
amount = int(input("Enter the amount"))
fee_hike = 1.0*amount
total fee = amount + fee_hike
print("Total fees payable", total_fee)
then run the program...
Similar questions