Created
December 27, 2017 07:06
-
-
Save serdkan/2993affc57d84de85e3bc89290d430f8 to your computer and use it in GitHub Desktop.
Python - Click - Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#_*_ coding:cp1254 _*_ | |
from tkinter import * | |
pencere = Tk() | |
def bastir(): | |
print("butona basildi") | |
buton = Button(pencere,text="click please",command=bastir) | |
buton.grid(row=0,column=0) | |
pencere.mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment