Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def tk_sleep():
  2. status_send = Tk()
  3. status_send.geometry('400x340')
  4. tx_1 = Text(status_send, font=('times', 12), width=62, height=15, wrap=WORD)
  5. tx_1.pack()
  6. for i in range(10):
  7. tx_1.insert(1.0, 'hello world')
  8. tx_1.update()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement