Python中,tkinter.Button(root,text='Yes ', command=Fyes)表示()。
时间: 2024-01-17 08:04:42 浏览: 71
Python tkinter
这段代码创建了一个名为 `Button` 的按钮控件,并将其放置在 `root` 窗口上。按钮上显示的文本为 "Yes "。当用户单击该按钮时,会调用名为 `Fyes` 的函数。
例如,可以使用以下代码创建一个窗口,并在窗口中放置一个 "Yes" 按钮:
```python
import tkinter as tk
def on_button_click():
print("Button clicked!")
root = tk.Tk()
button = tk.Button(root, text="Yes", command=on_button_click)
button.pack()
root.mainloop()
```
这将在窗口中显示一个 "Yes" 按钮。当用户单击该按钮时,会在控制台输出 "Button clicked!"。
阅读全文