欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

5.Python学习笔记:综合练习[购物车程序]

程序员文章站 2022-03-23 14:02:25
salary=5000 flag=True user_buy1=[] msg=''' --------欢迎光临----------- salary=5000 1.iphone6s 5800 2.mac book 9200 3.coffee 32 4.python book 80 5.bicyle 1... ......
salary=5000
flag=True
user_buy1=[]
msg='''
--------欢迎光临-----------
    salary=5000
    1.iphone6s  5800
    2.mac book  9200
    3.coffee    32
    4.python book   80
    5.bicyle    1500
    6.结束购物,退出
-------请选择你的要的商品----
'''
print(msg)
while flag:
    user_buy=int(input('请选择商品:'))
    if user_buy==1 :
        print('余额不足:',5000-5800)
    elif  user_buy==2 :
        print('余额不足:',5800-9200)
    elif user_buy==3 :
        salary=salary-32
        print('已加入你的购物车,余额为:',salary)
        user_buy1.append('coffee')
    elif user_buy==4 :
        salary=salary-80
        print('已加入你的购物车,余额为:',salary)
        user_buy1.append('python book')
    elif user_buy==5 :
        salary=salary-1500
        print('已加入你的购物车,余额为:',salary)
        user_buy1.append('bicyle')
    elif user_buy==6 :
        flag=False
    if salary<=0 :
        break
else:   print('你购买的商品有:',user_buy1[0:]) print('余额:',salary)
5.Python学习笔记:综合练习[购物车程序]