Advertisement
Guest User

new

a guest
May 26th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. from tkinter import *
  2.  
  3. class Main:
  4.  
  5.     def __init__(self):
  6.         main   = Tk()
  7.         self.x = 0
  8.        
  9.         Button(main,text=self.x,command=self.xplus1()).pack()
  10.         Button(main,text='Quit',command=main.destroy ).pack()
  11.         mainloop()
  12.        
  13.     def xplus1(self):
  14.         self.x = self.x + 1
  15.  
  16. Main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement