the salary for teaching assistant is calculated based on hourly basis

Solutions on MaxInterview for the salary for teaching assistant is calculated based on hourly basis by the best coders in the world

showing results for - "the salary for teaching assistant is calculated based on hourly basis"
Camila
28 May 2020
1hour = int(input("Hour : "))
2rate_per_hour = hour * 100
3tax = int((rate_per_hour / 100) * 10)
4Payable = rate_per_hour - tax
5
6print("""*********************************************************************
7Salary Sheet for the month of February 2021
8-------------------------------------------------------------------
9""")
10print(f"Hours served                      :   {hour}")
11print(f"Rate per Hour                     :   100")
12print("-------------------------------------------------------------------")
13print(f"Total                             :   {rate_per_hour}")
14print(f"(-10% tax)                        :  -{tax}")
15print("-------------------------------------------------------------------")
16print(f"Gross Payable                     :   {Payable}")
17print("*********************************************************************")
18
similar questions