Answers for "The Salary for Teaching Assistant is calculated based on hourly basis"

0

The Salary for Teaching Assistant is calculated based on hourly basis

hour = int(input("Hour : "))
rate_per_hour = hour * 100
tax = int((rate_per_hour / 100) * 10)
Payable = rate_per_hour - tax

print("""*********************************************************************
Salary Sheet for the month of February 2021
-------------------------------------------------------------------
""")
print(f"Hours served                      :   {hour}")
print(f"Rate per Hour                     :   100")
print("-------------------------------------------------------------------")
print(f"Total                             :   {rate_per_hour}")
print(f"(-10% tax)                        :  -{tax}")
print("-------------------------------------------------------------------")
print(f"Gross Payable                     :   {Payable}")
print("*********************************************************************")
Posted by: Guest on July-01-2021

Code answers related to "The Salary for Teaching Assistant is calculated based on hourly basis"

Python Answers by Framework

Browse Popular Code Answers by Language