购物车程序
需求:
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("没有对应商品,请重新选择")
原文:https://www.cnblogs.com/xiangyangersheng/p/14113917.html