当前位置:   article > 正文

python自动贩卖机可视化_基于python的饮品售货机的系统开发页面设计

基于python的饮品售货机的系统开发页面设计

在这里插入图片描述

#author@南方人啦
import tkinter as tk
from tkinter import ttk

win = tk.Tk()
win['bg'] = 'teal'
win.title('自助贩卖机')
win.geometry('775x750')

tk.Label(win, text='自助贩卖机', width=29,bg='black', fg='teal',font=('Arial', 20)).place(x=20, y=20)
goods = ['矿泉水', '橙汁', '香烟', '纸巾', '早餐奶', '面包', '方便面', '口香糖']
price = [1, 3.5, 20, 2, 3, 4, 4.5, 3]
xu_hao = [1, 2, 3, 4, 5, 6, 7, 8]
# 你的钱
tk.Label(win, text='你有多少钱').place(x=540, y=100)
# 你的钱输出框
Money = tk.Entry(win, bd=5, width=14)
Money.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/246542
推荐阅读
相关标签
  

闽ICP备14008679号