原文地址 分类目录——tkinter 先看效果 .pack()方式放置 .grid()方式放置 .place()方式放置 应用实例 .pack # # .pack()方式放置 tk.Label(window, text='1', bg='red').pack(side='top') #上 # pack支持的属性after, anchor, before, expand, fill, in, ipadx, ipady, padx, pady, side tk.Label(window, text='1', bg='red').pack(side='bottom')#下 tk.Label