购物车练习程序(自己写的和老师讲的)自己的健壮性不好

#Author:AXIN
#Date:2017/5/21 17:07
#输入工资
#打印出商品号和价格
#用户根据商品号来选择商品,够就直接扣钱,不够就提醒不够,退出购买
#用户随时可以退出(按q),退出时,打印已经购买的商品和余额

salary = int(input(‘Please input your salary : ‘))
# print(type(salary))
commodity_list = [‘1.iphone se ---- 3288 RMB‘,
                  ‘2.ipad ---- 2688 RMB‘,
                  ‘3.G-shock ---- 1095 RMB‘,
                  ‘4.BlueTooth Headset ---- 59 RMB‘]
c_price = [3288,2688,1095,59]
for i in range (4):
    print(commodity_list[i])

shopping_num = []#存放用户所选的商品号
# shopping_num.append(int(input(‘Please input your wanna commodity number : ‘)))
i = -1
#
# print(shopping_num[i])
# print(type(shopping_num[i]))
# shopping_num.append(int(input(‘Please input your wanna commodity number : ‘)))
# print(shopping_num)
# print(c_price[shopping_num[i]])
# print(type(c_price[shopping_num[i]]))
mod = ‘a‘
while mod !=‘q‘:
    shopping_num.append(int(input(‘Please input your wanna commodity number : ‘)))
    i= i+1
    if salary >= c_price[shopping_num[i]-1]:
        salary = salary - int(c_price[shopping_num[i]-1])
        print("You have already purchased the item :", shopping_num)
        mod = input(‘If you wanna exit ,input q .Press any key to continue‘)
    else:
        print(‘Your salary is not enough ...‘)
        shopping_num.pop()
        print("You have already purchased the item :", shopping_num)
        break

print("Your balance :",salary)

  

#Author:AXIN
#Date:2017/5/21 19:35
#老师讲的
product_list = [
    (‘Iphone‘,5288),
    (‘Mac pro‘,12000),
    (‘Bike‘,800),
    (‘Watch‘,36000),
    (‘Coffe‘,39),
    (‘Python book‘,120),
]
shopping_list = []

salary = input(‘Input your salary : ‘)
if salary.isdigit():#判断输入的是否是数字,如果是数字,把它变成int类型的
    salary = int(salary)
    while True:
        # for item in product_list:
        #     print(product_list.index(item),item)
        for index,item in enumerate(product_list):#enumerate 能把下标取出来
            print(index,item)

        user_choice = input("Your wanna product ?>>>")
        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 %s " %(p_item,salary))

                else:
                    print(‘\033[41;1mYour balabce only [%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:#python 中直接使用的变量初始化的 就是0,不用定义再使用
                print(p)
            print(‘Your balance :‘,salary)
            print(‘exit....‘)
            exit()
        else:
            print(‘Invalide choice ‘)

  

时间: 2024-10-27 06:09:48

购物车练习程序(自己写的和老师讲的)自己的健壮性不好的相关文章

基于j2ee的程序代写MVC架构

人力资源管理系统 完成系统静态页面设计,页面数量不少于10个,页面需用CSS进行美化,并为需要验证的信息利用JavaScript提供客户端验证.要求至少包含部门信息及部门内员工信息的添加.修改.删除和查询以及员工培训信息维护等功能页. 35 页面内容饱满.页面数量超过15个 设计数据库表部门信息表.员工信息表及员工培训信息表至少三张表,数据库信息设计合理.基于第一次作业所做静态页面使用JSP+JavaBean实现部门信息及部门内员工信息的添加.修改.删除和查询以及员工培训信息维护等功能. 40

幸福村站——成都传智播客程序员写出你的烧烤代码

又是一个阳光明媚,风和日丽之天,如果作为程序员的你还在键盘上苦苦的想着下一串代码该怎么写的话,那你就弱爆了.俗语说得好,学习要劳逸结合,写代码更是需要清晰的思维,在传智播客Java基础班开班一个月后,班主任决定带着这群"猿猴们"去传说中的"幸福村"放松放松,我们也跟着一起去感受程序员们的烧烤代码的幸福吧! 带着好奇的心理走进了"幸福梅林站",一个又一个的农家乐园开始浮现在我们眼前,那里朴素的民风和美丽的风景让我们暂时忘却了学习上的烦恼和城市里的喧

基于JAVA WEB技术旅游服务网站系统设计与实现网上程序代写

基于JAVA WEB技术旅游服务网站系统设计与实现网上程序代写 专业程序代写服务(QQ:928900200) 随着社会的进步.服务行业的服务水平不断发展与提高,宾馆.酒店.旅游等服务行业的信息量和工作量日益变大,而传统的人工管理方式已经远远不能满足现在旅游的服务方式.传统的旅游方式经分析其有诸多的缺陷,存在数据维护效率低下,不易保管,容易丢失和出错.同时查询也不方便,劳动力成本过高导致的旅游资源信息不方便,也在一定程度上导致了对各种信息反应缓慢,容易丧失商机.为了弥补上述缺陷,便于开展旅游预订工

python路5__购物车小程序练习

1,购物车小程序 需求: (1),启动程序后,打印全部商品列表,用户输入工资 (2),许用户根据商品编号购买商品 (3),用户购买商品,余额不足就退出程序,并打印信息 (4),可随时退出,退出时,打印已购买商品和余额 2,流程图 3,代码 #!/usr/bin/python3 Product_list = [ ('Doido钻戒 ',8000), ('ROLEX手表',20000), ('HuaWei P10',4000), ('AppleWatch',2000), ('Ipad',1000),

简单的购物车小程序

1 # -*- coding:utf-8 -*- #简单的购物车小程序 author:李学松 2 shopping_cart =[] 3 product_list_tatol = "---product list----" 4 welcome = "-----------welcome to shopping marketi----------" 5 product_list = [ 6 ('iphone',5800), 7 ('lenovo',900), 8 ('

C++程序代写实现HashSet class

C++程序代写实现HashSet class 专业程序代写(QQ:928900200) Implement a HashSet class for elements of type string.It has the following functions: bool add(const string &)bool contains(const string &) constint size() constIn this exercise, you need to implement so

程序员写给同事的一封信

当你看到这瓶冠生园蜂蜜后 也许你会惊讶,哎?这里咋么会有瓶冠生园蜂蜜呢? 也许你会好奇,想问问旁边的人,这是谁的? 也许你会怀疑,我不是用完后还没有去买新的,咋么这里会有新的呢?是我的还是别人的呢? 也许你会这么想,难道有人在暗恋我?没错,你想的很正确,确实是有人在暗恋你,喜欢你,而且关注你有段时间了. 也许你会问,他为什么会关注我呢? 那,就让我来给你答案 是因为有一次你去接水,但是你发现桶里没有水了,准备去换时,刚好我也去接水. 就在那刻使我下意识的开始关注你了. 也许你会问,他为什么会暗恋

java图形图像SVG转PPM程序代写 qq:928900200

Background Many image file formats encode image data as a 2-D matrix or raster of pixel colors. The amount of available color information is fixed by the image's width and height of its resolution. If the resolution is too small, you will have proble

二叉树程序代写

1.系统说明  输入一个正整数N,然后随机产生N个整数,创建一个二叉树(左子树≤父节点≤右子树).  使用Windows程序设计,在窗体的客户区自动地画出创建二叉树的过程,并动画演示中序遍历.2.系统要求  自动计算每个节点的坐标,节点圆的半径可设置,节点间的距离可设置,左右子树的角度可设置:  二叉树的大小可能超出窗体客户区的大小,因此需设立窗体的水平与垂直的滚动条:  动画演示遍历时,标出节点的顺序.二叉树程序代写,布布扣,bubuko.com