python tkinter 买衣服程序
时间: 2023-10-19 16:34:13 浏览: 135
当然可以!下面是一个示例的Python Tkinter代码,用于创建一个简单的买衣服程序:
```python
from tkinter import *
def buy_clothes():
selected_item = clothes_listbox.get(ACTIVE)
message_label.config(text=f"You bought {selected_item}!")
root = Tk()
root.title("Buy Clothes Program")
clothes = ["T-Shirt", "Jeans", "Dress", "Sweater", "Jacket"]
clothes_listbox = Listbox(root)
for item in clothes:
clothes_listbox.insert(END, item)
clothes_listbox.pack()
buy_button = Button(root, text="Buy", command=buy_clothes)
buy_button.pack()
message_label = Label(root, text="")
message_label.pack()
root.mainloop()
```
这段代码创建了一个窗口,并在窗口中显示衣服的列表。用户可以通过点击“Buy”按钮来购买选中的衣服,购买的结果将显示在下方的标签中。
你可以根据自己的需求进行修改和扩展,例如添加更多的衣服选项或者改变界面的布局。希望对你有帮助!
阅读全文