如何使用python里的tkinter创建一个按钮
时间: 2023-02-07 08:50:29 浏览: 164
python3 tkinter实现点击一个按钮跳出另一个窗口的方法
使用 python 的 tkinter 库创建按钮非常简单。首先,你需要导入 tkinter 库:
```
import tkinter as tk
```
然后,创建一个窗口:
```
root = tk.Tk()
```
接下来,你可以使用 tk.Button() 函数创建一个按钮,并指定它的父窗口、文本、命令等属性:
```
def button_click():
print("Button clicked!")
button = tk.Button(root, text="Click me!", command=button_click)
```
最后,使用 pack() 方法将按钮添加到窗口中:
```
button.pack()
```
完整的代码如下:
```
import tkinter as tk
def button_click():
print("Button clicked!")
root = tk.Tk()
button = tk.Button(root, text="Click me!", command=button_click)
button.pack()
root.mainloop()
```
运行上面的代码,会弹出一个窗口,点击按钮会在控制台输出 "Button clicked!"。
阅读全文