首页 > 编程语言 > 详细

python学习经典练习之购物车

时间:2020-12-10 17:35:36      阅读:22      评论:0      收藏:0      [点我收藏+]

购物车程序

需求:
1、程序启动后,让用户输入薪资并校验,然后打印商品列表
2、用户根据商品编号挑选商品
3、用户挑选商品后,判断余额是否足够,足够加入购物车并扣款,不过提醒用户余额不足
4、可随时退出,退出时,打印已购买商品及余额

技术分享图片
 1 #!/usr/bin/env python
 2 # -*- coding:utf-8 -*-
 3 # Author:向阳而生
 4 
 5 # 商品列表
 6 product_list = [("ipone",5800),("mac",18000),("book",50),
 7                 ("pen",120),("box",500),("car",200000)]
 8 # 建立空列表,存隐患购买的商品
 9 shopping_list = []
10 salary = input("请输入你的工资:")
11 # isdigit() 方法检测字符串是否只由数字组成。
12 while True:
13     if salary.isdigit():
14         salary = int(salary)
15     else:
16 # 如果输入字符串不是否只由数字组成,一直提示用户重新输入。
17         salary = input("你输入的工资信息不合法,请重新输入你的工资:")
18         continue
19     while True:
20 # 打印商品列表,供用户选择。
21         for index,item in enumerate(product_list):
22             print(index,item)
23         user_choice = input("你想买啥?需要退出请输入’q‘,选择商品请输入商品编号:" )
24         if user_choice.isdigit():
25             user_choice = int(user_choice)
26             if user_choice < len(product_list) and user_choice >=0:
27                 p_item = product_list[user_choice]
28                 if p_item[1] <= salary: #买得起
29                     shopping_list.append(p_item)
30                     salary -= p_item[1]
31                     print("你选择的 %s 已加入购物车,你的当前余额为 %s" %(p_item,salary))
32                 else:
33                     print("你的余额只剩[%s]了,买不起你选择的商品" %salary)
34             else:
35                 print("你选择的商品[%s]不存在"%user_choice)
36         elif user_choice == "q":
37             print("===你购买的商品如下===")
38             for i in shopping_list:
39                 print(i)
40             print("你现在余额为",salary)
41             exit()
42         else:
43             print("没有对应商品,请重新选择")
View Code

 

python学习经典练习之购物车

原文:https://www.cnblogs.com/xiangyangersheng/p/14113917.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!