Skip to content

Instantly share code, notes, and snippets.

@elowy01
Last active June 14, 2022 14:16
Show Gist options
  • Save elowy01/8b6419fc583b8877456987d46a0e8bbb to your computer and use it in GitHub Desktop.
Save elowy01/8b6419fc583b8877456987d46a0e8bbb to your computer and use it in GitHub Desktop.
# 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