Investigatory project on School fee management system.
With synopsis and images.
school_fee = float(input("Enter the school fee: "))
fee = 0.0
if school_fee <= 85528:
fee = school_fee*0.18 - 556.02
if fee<0: fee=0
else:
fee=(school_fee-85528)*.32 + 14839.02
fee = round(fee,0)
print("The fee is:", fee)
Comments
Leave a comment