day2_列表循环作业_shopping

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author:Kxk
'''
程序:购物车程序
启动程序后,让用户输入工资,然后打印商品列表
允许用户根据商品编号购买商品
用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒
可随时退出,退出时,打印已购买商品和余额
'''

product_list = [
('Iphone',5800),
('Mac Pro',9800),
('Bike',800),
('Watch',10600),
('Coffee',31),
('Book',88),
]
shopping_list = []

salary = input("Input your salary:") #输入工资
if salary.isdigit(): #判断工资是否为数字
salary = int(salary) #如果为数字int,进入死循环
while True:
for index,item in enumerate(product_list): #打印商品列表,取数组的下标enumerate
print(index,item)
user_choice = input("请选择你要的商品>>>>>>:?") #选择需要买的商品
if user_choice.isdigit(): #判断用户输入的是否位数字类型
user_choice = int(user_choice)
if user_choice < len(product_list) and user_choice >=0: #判断输入的数字是否在商品列表范围之内
p_item = product_list[user_choice] #通过下标把商品取出来
if p_item[1] <= salary: #如果商品小于工资
shopping_list.append(p_item) #添加到shopping_list表中
salary -= p_item[1]
print("Added %s into shopping cart,your current balance is \033[31;1m%s\033[0m" %(p_item,salary)) #其中\033[31;1m%s\033[0m 为固定写法,只能背下
                else:
print("\033[42;1m你的余额只剩下[%s]啦,还买个屁\033[0m" % salary)
else:
print("product code [%s] is not exist!"% user_choice)
elif user_choice == 'q':
print("-----------shopping list------------")
for p in shopping_list:
print(p)
print("Your current balance:",salary)
exit()
else:
print("invalid option")

转载于:https://www.cnblogs.com/kxk0126/p/8652289.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值