Tag Archives: Python GUI Program Temperature Conversion Fahrenheit to Celsius

Python GUI Program Temperature Conversion Fahrenheit to Celsius

Topic: Python GUI Program Temperature Conversion Fahrenheit to Celsius # Python GUI program Temperature conversion # Faherenheit to Celsius # Input Faherenheit Find Celsius # www.EasyCodeBook.com from tkinter import * def convert_temperature(): temp = float(entry.get()) temp = (temp – 32) * 5/9 output_label.configure(text = ‘ Converted to Celsius: {:.1f} ‘ .format(temp)) main_window = Tk() main_window.title(“www.EasyCodeBook.com”)… Read More »

Loading