Python学习第二周-经典购物车

# Author: sunny
product_list =[
('Iphone',5800),
('Map',5800),
('Bike',5800),
('Bear',5800),
('Banana',5800),
('Apple',5800),
]
shopping_list = []
salary = input("Input you salary:")
if salary.isdigit():
salary = int(salary)
while True:
for index, item in enumerate(product_list):
# print(product_list.index(item),item)
print(index,item)
user_chioce = input("选择要买吗?>>:")
if user_chioce.isdigit():
user_chioce = int(user_chioce)
if user_chioce< len(product_list) and user_chioce >=0:
p_item = product_list[user_chioce]
if p_item[1] <=salary: # 买得起
shopping_list.append(p_item)
salary -= p_item[1]
print("added %s into shopping cart,your current balance is \033[31;1m%s\033[0m"%(p_item,salary))
else:
print("\033[41;1m你的余额只剩[%s]啦,还买个球\033[0m"% salary)
else:
print("product code [%s] is not exist"% user_chioce)
elif user_chioce == 'q':
print("-----shopping list-----")
for p in shopping_list:
print(p)
print("Your current balance:",salary)
exit()
else:
print("invalid option")
需求如下:1.启动程序后,用户输入工资,然后打印商品列表
    2.允许用户根据编码编号,购买商品
     3.用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒
     4.可随时退出,退出时,打印已购买商品和余额
敲了一上午才敲好,对着敲的,自己敲不出来,最后到中午11.30的时候,最后运行的时候,竟然报错了,花了半个小时,列表只显示1个,花了半个小时没有找到原因,在下午的时候,我又一一核对了一遍代码,才发现是排版的问题,在度娘搜了一圈,
没有快捷排版的快捷键,这点不如eclipse,在eclipse里面是可以一键排版的,排好后,终于可以运行了,前后花了四个小时。由于自己是个小白,无论做什么,都是该猜的坑,都是必须踩到,才会办好事,我都服我自己了。

猜你喜欢

转载自www.cnblogs.com/sunnyplab/p/9707199.html