python Python:TKInter:Label(),Button(),pack()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:TKInter:Label(),Button(),pack()相关的知识,希望对你有一定的参考价值。

from tkinter import Tk, Label, Button

root = Tk()

# widget class + pack() geometry manager method
label_widget = Label(root, text="Label Widget").pack()
button_widget = Button(root, text="Button Widget").pack()

# root window loop
root.mainloop()

以上是关于python Python:TKInter:Label(),Button(),pack()的主要内容,如果未能解决你的问题,请参考以下文章