Showing posts with label Create First GUI application in Python.. Show all posts
Showing posts with label Create First GUI application in Python.. Show all posts

Tuesday, August 4, 2020

Create First GUI application in Python.

First GUI application in Python.


from tkinter import *

window = Tk()

window.title("Welcome to Coding Blocks!")

lbl = Label(window, text="Hello World")

lbl.grid(column=0, row=0)

window.mainloop()


OUTPUT


GUI application in Python.

First GUI application in Python.