python 通过list 实现小小购物车功能

需求如下:
这里写图片描述

代码:

# 购物车的实现
goods = ['Mac 笔记本','自行车','python book','衣服','鞋子']
price = [8000,1500,80,200,360]
car = []

# 请用户输入薪资
salary = int(input('Input your salary:'))
yue = salary
# 展示商品列表
print('你可以选购以下产品:')

for index in range(len(goods)):
    print()
    print('%d:%s 价格:%d' % (index+1,goods[index],price[index]))
print('输入wq则退出购物')
print()

flag = True
while flag:
    chose_num = input('请输入:')
    if chose_num == 'wq':
        flag = False
        print('你购物车的产品为:')
        for x in car:
            print(x)

        print('\n当前你的余额为:%d \n欢迎下次光临!' % (yue))
        break
    elif chose_num == '':
        continue
    elif int(chose_num) > len(goods):
        print('你输入的产品序号不存在')
    else:
        # 查找该产品的价格
        goods_price = price[int(chose_num)-1]
        if yue - goods_price > 0:
            car.append(goods[int(chose_num)-1])
            # 计算余额
            yue = yue - goods_price
            print('加入购物车成功 余额为:%d' % (yue))
        else:
            print('余额不足: %d元' % (salary-goods_price))

效果图如下:
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值