mirror of
https://github.com/Xevion/tkinter-mini-projects.git
synced 2025-12-05 23:16:36 -06:00
7 lines
97 B
Python
7 lines
97 B
Python
from tkinter import *
|
|
root = Tk()
|
|
|
|
w = Label(root, text="Hello World!")
|
|
w.pack()
|
|
|
|
root.mainloop() |