Skip to content

Instantly share code, notes, and snippets.

@khafatech
Created November 13, 2019 23:40
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 khafatech/5e9551043189c311c94e228f818c2031 to your computer and use it in GitHub Desktop.
Save khafatech/5e9551043189c311c94e228f818c2031 to your computer and use it in GitHub Desktop.
from tkinter import *
w=Canvas(Tk(), width=320, height=240)
w.pack()
w.create_line(0, 0, 200, 100)
w.create_line(0, 0, 190, 100)
mainloop()
from tkinter import *
a=Frame(Tk())
a.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment