Using Python Program 10 1 Calculate Pay Create Form Using Tkinter Enter Hourly Wage Number Q37098711

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

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.