Tag Archives: Python GUI Program show Label and Button tkinter module

Show Label and Button Widgets Python Tkinter Program

Topic: Show Label and Button Widgets Python Tkinter Program # Write a Python GUI program # using tkinter module # to show a Label and button in window import tkinter as tk def main(): window= tk.Tk() window.title(“Show Label and Button Widgets”) window.geometry(“400×200”) # create a label with some text label1 = tk.Label(window, text=”Hello I am… Read More »

Loading