7 lines
116 B
Python
7 lines
116 B
Python
import tkinter as tk
|
|
|
|
window = tk.Tk()
|
|
|
|
greeting = tk.Label(text="Hello, Tkinter")
|
|
greeting.pack()
|
|
window.mainloop() |