example.py 234 B

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