马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 张育玮 于 2020-11-11 19:04 编辑
来,上代码 ^-^ ^-^def fun1():
for i in menu:
print('菜品:%s,价格:%.2f元' % (i[0], i[1]))
def fun2():
for x, i in enumerate(menu, start=1):
print('{} {} '.format(x, i[0]))
while True:
b = int(input('请输入您选择的菜品编号,退出输入-1:'))
if b == -1:
break
select.append(menu[b - 1])
def fun3():
total = 0
print('您已点菜品为:')
for i in select:
# print(i)
print(i[0], i[1])
total = total + i[1] # total += i[1]
print('顾客您好,您本次消费%.2f元' % (total))
# 100 打五折 50-100 抹零 50以下没有优惠
money = 0.0
if total >= 100: # 打折
money = total * 0.5
print('消费满100打五折,您实际消费:%.2f元' % (money))
elif total >= 50: # 抹零
money = total // 10 * 10
print('消费50-100之间抹零,您实际消费%.2f元' % (money))
else:
money = total
# 输入顾客的付款金额
pay = float(input('请输入顾客的付款金额:'))
print('谢谢,找零:%.2f元' % (pay - money))
def fun4():
# 输入顾客的留言
word = input('请留下您宝贵的意见:')
# 讲留言添加到留言列表中
messages.append(word)
# 选择是否查看留言
t = input('输入1查看所有留言,其他退出').strip()
if t == '1':
# 查看所有留言
for i in messages:
print(i)
def fun5():
for x, i in enumerate(menu):
print('编号:{},菜品信息:{}'.format(x + 1, i))
# 输入要修改的菜品的编号
b = int(input('请输入要修改的菜品的编号:'))
# 输入菜名和价格
name = input('请输入新菜名:')
price = int(input('请输入价格:'))
# 修改
menu[b - 1] = (name, price)
def fun6():
for x, i in enumerate(select):
print('编号:{},菜品信息:{}'.format(x + 1, i))
# 询问是删除还是增加
quest = input('请问是删除(0)还是增加(1)').strip()
# 判断执行不同的操作
if quest == '0':
b = int(input('请输入要删除的编号:'))
select.pop(b - 1)
elif quest == '1':
# 显示饭店菜单
for x, i in enumerate(menu):
print('编号:{},菜品信息:{}'.format(x + 1, i))
# 输出要增加的菜品编号
b = int(input('请输入要增加的编号:'))
select.append(menu[b - 1])
select=[]
messages = []
menu = [['红烧肉',30],
['水煮鱼',58],
['水果沙拉',20]]
desk = ['菜品展示','点餐','结账','留言','修改饭店菜单','修改已点菜单','退出']
while True:
print(' \n饭店点餐系统\n欢迎光临')
for x, i in enumerate(desk, start=1):
print('%d、%s' % (x, i))
n = int(input('请输入编号:'))
if n == 1:
fun1()
elif n == 2:
fun2()
elif n == 3:
fun3()
elif n == 4:
fun4()
elif n == 5:
fun5()
elif n == 6:
fun6()
elif n == 7: # 退出
print('欢迎下次光临')
break
# exit(0)
else: # 错误提示
n = input('输入有误,请重新输入,如需退出请选择0')
|