Facebook
From Botched Bird, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 190
  1. from tkinter import *
  2. from random import randint
  3.  
  4. def klik():
  5.     global o
  6.     o.destroy()
  7.  
  8.  
  9. def skok(z):
  10.     global b1,a,b
  11.     a=(randint(30,400))
  12.     b=(randint(30,400))
  13.     b1.place(x=a,y=b)
  14.  
  15. o = Tk( )
  16. o.title("Irytator")
  17.  
  18. o.geometry("500x500+100+100")
  19. a=0
  20. b=0
  21.  
  22. b1 = Button(o,text="Złap mnie",command=klik)
  23. b1.bind("<Enter>", skok)
  24. b1.place(x=a,y=b)
  25. o.mainloop()
  26.