Advertisement
Guest User

pythontkSHAG

a guest
Jan 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #def funct_sum(a):
  2. #result=a+a
  3. #print(result)
  4.  
  5. #def funct(a):
  6. #result=a*a
  7. #print(result)
  8.  
  9.  
  10. #for i in range(100):
  11. #if i%3==0:
  12. #funct_sum(i)
  13. #elif i%2==0:
  14. #funct(i)
  15. #else:
  16. #print(i)
  17. from tkinter import *
  18. window=Tk()
  19. window.title("Hello World, it title!")
  20. window.minsize(1920, 1080)
  21. window.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement