📅  最后修改于: 2022-03-11 14:45:05.845000             🧑  作者: Mango
from tkinter import *
root = Tk()
l = Label(root, text='Hello World!!') #Creates the label with text hello world
l.pack() #Makes it visible to us