码迷,mamicode.com
首页 > 编程语言 > 详细

Python 之 购物车程序(列表使用场景)

时间:2019-01-17 23:44:20      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:hang   macbook   change   --   use   user   auth   input   编号   

要求:

1、程序运行时,让用户输入工资大小。

2、列出当所有产品列表清单。

3、让用户输入需要购买的产品编号。

4、结束程序时,打印购买明细与剩下余额。

#Author Kang

shopping_list = [(‘Iphone‘,5000),(‘MacBook‘,9000),(‘Huwei P20‘,9999)]

shopping_car = []

salary = int(input(‘请输入你的工资:‘))

while True:
    for index,item in enumerate(shopping_list):
        print(index,item)
    user_change = input(‘请输入你要购买的产品编号:‘)
    if user_change.isdigit():
        user_change=int(user_change)
        if user_change >= 0 and user_change < len(shopping_list) and salary >= shopping_list[user_change][1]:
            shopping_car.append(shopping_list[user_change])
            salary -=shopping_list[user_change][1]
        elif salary <= shopping_list[user_change][1] :
            print(‘你的余额已经不足!!!‘)
        else:
            print(‘你输入的编号有误,请重新输入!!!!!‘)
    elif user_change == ‘q‘:
        print(‘--------已购买的产品-------‘)
        print(shopping_car)
        print(‘剩下的余额为>>>:‘,salary)
        exit()
    else:
        print("输入有误,请重新输入")

Python 之 购物车程序(列表使用场景)

标签:hang   macbook   change   --   use   user   auth   input   编号   

原文地址:http://blog.51cto.com/12965094/2343990

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!