📜  python tkinter 获取标签 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:05.845000             🧑  作者: Mango

代码示例1
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