7 lines
109 B
Python
7 lines
109 B
Python
import tkinter as tk
|
|
|
|
window = tk.Tk()
|
|
label = tk.Label(text="Python rocks!")
|
|
label.pack()
|
|
|
|
window.mainloop() |