首页 > 代码库 > Python购物车
Python购物车
product_list = [ [‘Iphone‘,5888], [‘Mac Air‘,8000], [‘XiaoMi‘,19.9], [‘coffee‘,30], [‘Tesla‘,820000], [‘Bike‘,700], [‘Cloth‘,200], ] l=[] shop_car=[] salary=int(input("请输入您的工资: ")) while True: index=0 for i in product_list: print(index,i) index+=1 choice=input("请输入商品编号 w保存,q 退出: ") if choice.isdigit(): choice=int(choice) if choice > 0 and choice <= len(product_list): product=product_list[choice] if salary >= product[1]: shop_car.append(product) salary -= product[1] else: print("余额不足") else: print("您输入的商品编号不存在") elif choice == ‘w‘: print("---已经购买的商品列表---") l=[] for i in shop_car: if i not in l: l.append(i) l.append(shop_car.count(i)) print(l) print("您的余额 %s" % salary) print("end-----------") break else: exit("退出程序")
Python购物车
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。