python点击buttion 如何将 comboxlist下拉框的值打印出来
时间: 2024-03-29 13:40:07 浏览: 104
buttion 特效button
你可以使用tkinter库中的Combobox控件和Button控件来实现这个功能。下面是一个示例代码:
```python
import tkinter as tk
from tkinter import ttk
def print_selected_value():
selected_value = combo.get()
print(selected_value)
root = tk.Tk()
root.geometry("300x200")
values = ['apple', 'banana', 'cherry', 'date']
combo = ttk.Combobox(root, values=values)
combo.pack(pady=10)
button = tk.Button(root, text="Print Selected Value", command=print_selected_value)
button.pack(pady=10)
root.mainloop()
```
当你选择下拉框中的一个选项并点击按钮时,它将会打印出所选的值。
阅读全文