Python Tkinter Button 作者:马育民 • 2025-03-19 23:09 • 阅读:10007 按钮组件 ``` from tkinter import * root = Tk() button = Button(root, text="按钮") button.pack() mainloop() ``` 原文出处:http://malaoshi.top/show_1GWn2HunCxU.html