python实现简单的购物程序
Posted 搁刀听雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python实现简单的购物程序相关的知识,希望对你有一定的参考价值。
需求:
启动程序后,让用户输入工资,然后打印商品列表
允许用户根据商品编号购买商品
用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒
可随时退出,退出时,打印已购买商品和余额
1 #!/usr/bin/ven python 2 # Author: Hawkeye 3 ‘‘‘ 4 本程序为实例程序:购物车程序 5 6 需求: 7 8 启动程序后,让用户输入工资,然后打印商品列表 9 允许用户根据商品编号购买商品 10 用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒 11 可随时退出,退出时,打印已购买商品和余额 12 13 ‘‘‘ 14 #创建商品列表 15 product_list = [ 16 ["Iphone",5800], 17 ["Mac Pro",9800], 18 ["bike",800], 19 ["watch",10600], 20 ["coffee",31], 21 ["Alex Python",20] 22 ] 23 # for i in product_list: 24 # print(i) 25 26 #创建购物列表 27 shopping_list =[] 28 #要求用户输入数据 29 salary = input("Input your salary:") 30 #首先要对用户的输入做判断 31 if salary.isdigit(): 32 salary = int(salary) #转换为整形 33 while True: #循环输出列表 34 for index,item in enumerate(product_list): 35 print(index,item) 36 user_choice = input("请选择要买什么......") 37 if user_choice.isdigit():#转换为整形 38 user_choice =int(user_choice) 39 if user_choice < len(product_list) and user_choice >=0: 40 p_item = product_list[user_choice] 41 if p_item[1] <=salary:#钱够 42 shopping_list.append(p_item) 43 salary -= p_item[1] 44 print("Added %s into shopping cart,your current balance is 33[31;1m%s 33[0m" % (p_item,salary) ) 45 else:#钱不够 46 print("