Last active
September 30, 2015 04:34
-
-
Save Korilakkuma/fb788b244502cd5cda8c to your computer and use it in GitHub Desktop.
GUI event by Tkinter
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
| import tkinter as tk | |
| root = tk.Tk() | |
| root.geometry('800x600') | |
| button = tk.Button(text = "Submit", command = root.quit) | |
| button.pack() | |
| root.mainloop() | |
| entry = tk.Entry() | |
| entry.bind('<Return>', lambda e: print(entry.get())) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment