Skip to content

Instantly share code, notes, and snippets.

@AlienKevin
Last active March 23, 2020 14:42
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 AlienKevin/de1572067dca44f67bca30dee43e9b79 to your computer and use it in GitHub Desktop.
Save AlienKevin/de1572067dca44f67bca30dee43e9b79 to your computer and use it in GitHub Desktop.
from tkinter import *
window = Tk()
window.title("Welcome to LikeGeeks app")
lbl = Label(window, text="Hello")
lbl.grid(column=0, row=0)
window.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment