Skip to content

Instantly share code, notes, and snippets.

@CodersArts
Created May 20, 2019 10:31
Show Gist options
  • Save CodersArts/f3daddc8adeda01944fdaa2bf37555fd to your computer and use it in GitHub Desktop.
Save CodersArts/f3daddc8adeda01944fdaa2bf37555fd to your computer and use it in GitHub Desktop.
from tkinter import *
window = Tk()
window.title("Welcome to codersarts app")
lbl = Label(window, text="Hello")
lbl.grid(column=0, row=0)
window.geometry('1200x750')
window.mainloop()
@CodersArts
Copy link
Author

CodersArts commented May 20, 2019

Let's start Learning TkInter

Tkinter is used to create GUI in Python

this program is about how to write hello world program in tkinter

if you have any doubts or need programming help in Tkinter
Please contact us now : https://www.codersarts.com/contact

Contributed by CodersArts
www.codersarts.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment