12 lines
167 B
Python
12 lines
167 B
Python
from tkinter import *
|
|
|
|
root = Tk()
|
|
|
|
# Creating a Label Widget
|
|
myLabel = Label(root, text="Hello World!")
|
|
# Shoving it onto the screen
|
|
myLabel.pack()
|
|
|
|
|
|
root.mainloop()
|