Last active
June 14, 2022 14:16
-
-
Save elowy01/8b6419fc583b8877456987d46a0e8bbb to your computer and use it in GitHub Desktop.
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
# Basic example | |
>>> import tkinter as tk | |
>>> window = tk.Tk() | |
>>> label = tk.Label(text="Name") | |
>>> entry = tk.Entry() | |
>>> label.pack() | |
>>> entry.pack() | |
>>> name = entry.get() | |
>>> name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment