购物车2

Posted Python学习之路

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了购物车2相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# coding: utf8
# Author:Felix_zh

product_list =[
    [‘Mi 5s‘,1999],
    [‘HaWei Mate8‘,2799],
    [‘IPhone 6s plus‘,6888],
    [‘ThinkPad T460P‘,7888],
    [‘MacBook Air 13‘,6988],
    [‘MacBook Pro 13‘,9288],
]

shopping_list = [] # 定义空列表
salary = input("Input your salary:") # 输入工资
if salary.isdigit(): # 判断是不是数字
    salary = int(salary) # 是数字转换成 int
    while True: # 进入循环
        for index,item in enumerate(product_list): # 建立商品索引给列表加下标
            print(index,item) # 打印索引及商品列表
        #break
        ‘‘‘方法2 enumerate 取列表下标
        for item in shopping_list:
            print(shopping_list.index(item),item)
        break
        ‘‘‘
        user_choice = input("选择要购买的商品:") # 选择购买商品
        if user_choice.isdigit(): # 判断用户输入数字类型
            user_choice = int(user_choice) # 转换成int类型
            if user_choice < len(product_list) and user_choice >=0: # 判断用户输入是否在范围内
                p_itme =product_list[user_choice] # 通过下标,添加购买商品列表
                if p_itme[1] <= salary: # 判断工资是否够用
                    shopping_list.append(p_itme) # 添加到已购买商品列表
                    salary -= p_itme[1] # 扣除费用
                    print("Added %s into shopping cart,your current balance is \033[31;1m%s\033[0m" %(p_itme,salary)) # 显示已购买的商品和费用
                else:
                    print("\033[41;1m你的余额只剩[%s]了,买不起了。\033[0m" % salary) # 显示余额
            else:
                print("product code [%s] is not exist!" % user_choice) # 提示商品不存在
        elif user_choice == ‘q‘: # 输入 q 退出
            print(‘----------shopping list----------‘) # 打印购买商品
            for p in shopping_list:
                print(p) # 打印商品
            print("Your current balance:",salary) # 显示余额
            exit()
        else:
            print("invalid option")

  

以上是关于购物车2的主要内容,如果未能解决你的问题,请参考以下文章

将对象列表从片段传递到 recyclerView 适配器

VSCode自定义代码片段2——.vue文件的模板

Magento:将静态块添加到结帐购物车

片段必须在创建之前调用寄存器 registerForActivityResult()

为啥代码片段在 matplotlib 2.0.2 上运行良好,但在 matplotlib 2.1.0 上引发错误

web代码片段