Files
Python_GUI_tutorial/02 Arbeiten mit Widgets/01 uebung_entry.py

11 lines
134 B
Python

import tkinter as tk
window = tk.Tk()
label = tk.Label(text="Name")
entry = tk.Entry()
label.pack()
entry.pack()
window.mainloop()