1
0

example.py 191 B

123456789101112
  1. from tkinter import *
  2. root = Tk()
  3. root.title("Python Example App")
  4. t = Text(root)
  5. t.insert(END, "Type stuff here.")
  6. t.pack()
  7. w = Label(root, text="Hello, world!")
  8. w.pack()
  9. root.mainloop()