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

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

li =[    {
"name":"苹果","price":10}, {
"name":"香蕉","price":20}, {
"name":"木瓜","price":30},]#把货物放在货架上shopping_car={}print("欢迎光临田园水果店")money = input("请输入你的现金 : ")while 1: if money.isdigit() and int(money)>0: for i ,k in enumerate(li): print('序号{},商品{},price{}'.format(i,k['name'],k['price'])) choose = input ("请输入你要购买的商品序号") if choose.isdigit() and int(choose)
li[int(choose)]['price']*int(num): money =int(money)-li[int(choose)]['price']*int(num) if li[int(choose)]['name'] in shopping_car: shopping_car[li[int(choose)]['name']]=shopping_car[li[int(choose)]['name']] + int(num) else: shopping_car[li[int(choose)]['name']]=int(num) print("购物车中的商品有{},您的余额为{}".format (shopping_car,money)) else: print("您的余额不足!") break else: print('填序号!')

 

转载于:https://www.cnblogs.com/yuhoucaihong/p/10384060.html

你可能感兴趣的文章
自定义View以及事件分发总结
查看>>
人生第一个过万 Star 的 GitHub 项目诞生
查看>>
Mac下配置多个SSH-Key (gitLab)
查看>>
Gradle之module间依赖版本同步
查看>>
一些kindle资源
查看>>
Node第一天
查看>>
【开源】多多客发布 3.0.0-alpha.6,Koa+Vue+Taro最佳实践
查看>>
页面搭建工具总结及扩展架构思考
查看>>
java springcloud版b2b2c社交电商spring cloud分布式微服务(十五)Springboot整合RabbitMQ...
查看>>
SpringCloud使用Prometheus监控(基于Eureka)
查看>>
10g手动创建数据库
查看>>
集群之RHCS
查看>>
auto_install_zabbix.sh
查看>>
Linux—文件系统
查看>>
运用Loadrunner测试Mysql数据库性能
查看>>
mysql ERROR 1396 (HY000): Operation CREATE USER failed 解决办法
查看>>
Spring MVC EL表达式不能显示
查看>>
Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules
查看>>
【致青春】我们挥霍时间的年代
查看>>
WDS系列之四:自定义安装映像
查看>>