When using python your program from 10-1 calculate pay, create aform using tkinter on which you enter hourly wage and the number ofhours worked, and gross pay for the week is displayed on the form.The labels before the entry boxes and result box should be clear tothe user. Create a button to activate the calculation and displaythe results. Use a title of the window to make clear the purpose ofthe program.
Solution
python code
from tkinter import *
# function to calculate Gross Wage
def calculateWages():
# getuser input as getHour variable
getHour = float(hours.get())
# getuser input as getHour variable
getSal =
OR
OR