zoukankan      html  css  js  c++  java
  • day02_06 程序:购物车程序

    # Author:Adminone
    
    '''
    程序练习
    请闭眼写出以下程序。
    
    程序:购物车程序
    
    需求:
    
    启动程序后,让用户输入工资,然后打印商品列表
    允许用户根据商品编号购买商品
    用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒
    可随时退出,退出时,打印已购买商品和余额
    '''
    
    product_list = [
        ('Iphone',5800),
        ('Mac Pro',9800),
        ('Bike',800),
        ('Watch',10600),
        ('Coffee',31),
        ('Alex Python',120),
    ]
    
    #print(product_list[2][0])
    
    shopping_list = []
    salary = input("Input your salary:")
    if salary.isdigit():        #判断输入是不是数字
        salary = int(salary)    #类型转换
        while True:
            #for item in product_list:
            #    print(product_list.index(item),item)
            #for item in enumerate(product_list):
            #    print(item)
            for index,item in enumerate(product_list):
                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)
                        salary -= p_item[1]
                        print("Added %s into shopping cart,your current balance is \033[31;1m%s\033[0m" %(p_item,salary) )
                    else:
                        print("\033[41;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")
    
    
  • 相关阅读:
    (四)使用SecureCRTPortable 连接虚拟机 安装jdk
    (三)配置本地YUM源
    (二) 配置 centos6.7
    docker学习
    linux磁盘情况查看处理
    日志文件切割
    已有项目创建git
    微擎绑定开放平台后依然拿不到唯一id?
    php7 安装mongodb扩展
    mongodb 学习
  • 原文地址:https://www.cnblogs.com/netflix/p/14854086.html
Copyright © 2011-2022 走看看