Python 官方文档:入门教程 => 点击学习
小编给大家分享一下python如何实现简单购物车小程序,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!具体内容如下要求代码# --*--coding:utf-8--*--# Author: 村雨
小编给大家分享一下python如何实现简单购物车小程序,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
具体内容如下
要求
代码
# --*--coding:utf-8--*--# Author: 村雨import pprintproductList = [('Iphone 8', 10000), ('GTX2080', 8000), ('Z7KP7-GT', 6000), ('Mac pro', 15000), ('Honor 10', 2800), ('Iphone XR', 12000), ('Mi 8', 2999) ]shoppingList = []print('输入你的工资:')salary = input()if not salary.isdigit(): print('请输入整数')else: salary = int(salary) while True: for index, item in enumerate(productList): print(index + 1, item) print('输入你要买的商品的序号:') userWant = input() if userWant.isdigit(): userWant = int(userWant) if userWant <= len(productList) and userWant > 0: print('你要购买的是:', productList[userWant - 1][0]) if salary >= productList[userWant - 1][1]: shoppingList.append(productList[userWant - 1][0]) salary -= productList[userWant - 1][1] print('你已经购买了' + productList[userWant - 1][0] + ', 你的余额为 ' + str(salary)) else: print('对不起,你的余额不足!请努力工作吧!') print('你当前所购买的商品为:') for brought in shoppingList: pprint.pprint(brought) print('你当前余额为:', salary) exit() else: print('你输入的商品序号有错,请重新输入') elif userWant == 'q': print('-----------Shopping List----------') for brought in shoppingList: pprint.pprint(brought) print('你的余额为 ', salary) exit() else: print('Invalid input!!!')
结果
看完了这篇文章,相信你对“Python如何实现简单购物车小程序”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网Python频道,感谢各位的阅读!
--结束END--
本文标题: Python如何实现简单购物车小程序
本文链接: https://lsjlt.com/news/322088.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0