exampleapp.py 235 B

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