Skip to content

Instantly share code, notes, and snippets.

@peey
Forked from siwells/Tkinter_hello_world.py
Created November 2, 2020 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peey/eca4f3fe428b08ee42d6ee37e70dc54b to your computer and use it in GitHub Desktop.
Save peey/eca4f3fe428b08ee42d6ee37e70dc54b to your computer and use it in GitHub Desktop.
A Python GUI "Hello World" using Tkinter
from tkinter import *
root = Tk()
w = Label(root, text="Hello World")
w.pack()
root.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment