11 lines
134 B
Python
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() |