博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基础的购物车程序
阅读量:5278 次
发布时间:2019-06-14

本文共 1551 字,大约阅读时间需要 5 分钟。

# Author:Zhangproduct_list =[    ('Iphone',5800),    ('Mac Pro', 9800),    ('Bike', 800),    ('Watch', 10600),    ('Coffee', 31),    ('Zhang Python', 120)]shopping_list =[]salary = input("Input your salary:")if salary.isdigit():    #判断是否是数字    salary =int(salary)    while True:                                        # index,item    带下标的列表        for index,item in enumerate(product_list):     #for item in product_list:     列表显示下标            print(index,item)                           #    print(product_list.index(item),item)        user_choice =input("选择你要购买的商品编号>>>:")        if user_choice.isdigit():            user_choice =int(user_choice)            if user_choice 
=0: p_item =product_list[user_choice] if p_item[1]<= salary: #买得起 shopping_list.append(p_item) salary -= p_item[1] #\033[31;1m%s\033[0m 高亮显示 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")

 

转载于:https://www.cnblogs.com/admise/p/7910436.html

你可能感兴趣的文章
P1192-台阶问题
查看>>
Java大数——a^b + b^a
查看>>
简单的数据库操作
查看>>
帧的最小长度 CSMA/CD
查看>>
树状数组及其他特别简单的扩展
查看>>
普通求素数和线性筛素数
查看>>
PHP截取中英文混合字符
查看>>
电子眼抓拍大解密
查看>>
51nod1076 (边双连通)
查看>>
Linux pipe函数
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
国外常见互联网盈利创新模式
查看>>
android:scaleType属性
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>