Following are the Python program to calculate "Miscellaneous fee" and the total fees:
Program Explanation:
Program:
Fee = float(input("Enter your course fee: "))#defining a Fee variable that inputs value
MFee = (5.0/100) * Fee#defining MFee that calculates 5% of tax on Fee
totalFee = Fee + MFee#defining totalFee variable that calculates total fees that includes tax
print("Miscellaneous Fee: ","%.2f"%MFee)#print taxable fee
print("Total Fee of Course: ","%.2f"%totalFee)#print total Fees
Output:
Please find the attachment file.
Learn more:
brainly.com/question/8950747