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()的主要内容,如果未能解决你的问题,请参考以下文章
Python:tkinter 之 Listbox & Combobox
Python3 Tkinter基础 Label 显示的文字换行
python [Python:Tkinter桌面开发] #python #tkinter #tk #desktop
python tkinter与ttk
Python中的tkinter库简单案例详解
python tkinter Label 图形