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

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

lst0 = ['购买商品','金额'] lst1 = ['1.','iphone6s','5800'] lst2 = ['2.','mac book','9000'] lst3 = ['3.','coffee','32'] lst4 = ['4.','python book','80'] lst5 = ['5.','bicycle','1500'] c = 1 while 1>0:       salary = input("Salary = ")       if salary.isdigit():           salary = int(salary)           break print(lst1[0],lst1[1],lst1[2]) print(lst2[0],lst2[1],lst2[2]) print(lst3[0],lst3[1],lst3[2]) print(lst4[0],lst4[1],lst4[2]) print(lst5[0],lst5[1],lst5[2]) while 1 > 0:     a = input('>>>:')     if a == 'quit':         d = 0         for i in range(c):             print(lst0[d], lst0[d + 1], end='\n')             d += 2         print('您的余额为:',salary)         print('欢迎下次光临')         break     elif a.isdigit():         a = int(a)         if 0 < a < 6:             if a == 1:                 lst = lst1             elif a == 2:                 lst = lst2             elif a == 3:                 lst = lst3             elif a == 4:                 lst = lst4             elif a == 5:                 lst = lst5             if salary >= int(lst[2]):                 print(lst[1], '已经加入您的购物车,当前余额:', salary - int(lst[2]))                 salary = salary - int(lst[2])                 lst0.append(lst[1])                 lst0.append(lst[2])                 c += 1             else:                 print('余额不足,', salary - int(lst[2]))

转载于:https://www.cnblogs.com/david2018/p/9741423.html

你可能感兴趣的文章
艾伟也谈项目管理,我是如何带领团队开发项目的
查看>>
(五)springcloud微服务分布式云架构 - 云架构代码结构构建
查看>>
C++ string::size_type
查看>>
springboot 整合 mongodb实现 批量更新数据
查看>>
用反射简化 asp.net 报表的一点总结
查看>>
IE6-IE9兼容性问题列表及解决办法_补充之五:在IE9下, disabled的文本框内容被选中后,其他控件无法获得焦点问题...
查看>>
sharepoint 2013基于AD的Form表单登录(三)——选择用户时,屏蔽掉AD。
查看>>
homework1
查看>>
数据备份、pymysql模块
查看>>
4001.基于双向链表的双向冒泡排序法
查看>>
include静态加载布局ViewStub动态加载布局
查看>>
Android 调用分享框
查看>>
css3标签
查看>>
0323表格学习
查看>>
NSOperation的进阶使用和简单探讨
查看>>
cocos2d 很水很水的看法
查看>>
【亲测有效】Kali Linux无法安装网易云音乐的解决方案
查看>>
【Construct Binary Tree from Inorder and Postorder Traversal】cpp
查看>>
【Pascal's Triangle II 】cpp
查看>>
【MPI学习3】MPI并行程序设计模式:不同通信模式MPI并行程序的设计
查看>>