Question
Windchill Calculator GUI using tkinter This assignment is the same as Programming Assignment 11 Windchill Calculator except that this program will have a GUI interface
Windchill Calculator GUI using tkinter
This assignment is the same as Programming Assignment 11 Windchill Calculator except that this program will have a GUI interface to the user instead of a console interface. This program will demonstrate the difference in programming using event driven programming. The GUI will have the appearance of the example demonstrated below. You will use the calculateWindchill function that you wrote for Programming Assignment 11 to calculate the windchill in this program. You can assume that the wind speed and Fahrenheit temperature entered by the user is valid. You may do validation checking, if you desire. The GUI will contain two entry widgets for entering the temperature and wind speed and a label for displaying the windchill as shown in the example below. Just a reminder: there should be no loop in your program to keep the GUI running. A good start for this assignment would be to base it on the kilo_converter2 program in the 'tkinter python programs' folder.
Sample program as initially displayed: Windchill Calculator Windchill Calculator Enter the temperature in degrees Fahrenheit: Enter the wind speed in mph: Calculate Windchil The windchill temperature is: Sample program display after calculating a windchill temperature: Windchill Calculator Windchill Calculator Enter the temperature in degrees Fahrenheit: 0 Enter the wind speed in mph: 1 Calculate Windchill The windchill temperature is:-19.4 degrees fahrenheit. Sample program as initially displayed: Windchill Calculator Windchill Calculator Enter the temperature in degrees Fahrenheit: Enter the wind speed in mph: Calculate Windchil The windchill temperature is: Sample program display after calculating a windchill temperature: Windchill Calculator Windchill Calculator Enter the temperature in degrees Fahrenheit: 0 Enter the wind speed in mph: 1 Calculate Windchill The windchill temperature is:-19.4 degrees fahrenheitStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started