首页 > 编程语言 > 详细

基于Python语言实现的购物车程序<入门小白>

时间:2018-11-24 16:19:51      阅读:159      评论:0      收藏:0      [点我收藏+]
1.需求:
1:启动程序后,让用户输入工资,然后打印商品列表
2:允许用户根据商品编号购买商品
3:用户选择商品后,检测余额是否够,够就直接付款,不够就提醒
4:可随时推出,推出时,打印已购买商品和余额

2.代码如下:

__author__ = "B J"


product_list = [
    (Iphone,5800),
    (Mac Pro,9800),
    (Bike,800),
    (Watch,10600),
    (Coffee,31),
]
shopping_list = []
salary = input("Input your salary:")
if salary.isdigit():
    salary = int(salary)
    while True:
        for index,item in enumerate(product_list):
            #print(product_list.index(item),item)
            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:

 

基于Python语言实现的购物车程序<入门小白>

原文:https://www.cnblogs.com/jb9527/p/10012293.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!