菜鸟生活(python)之购物车列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了菜鸟生活(python)之购物车列表相关的知识,希望对你有一定的参考价值。

product_list = [
(‘Iphone‘,5800),
(‘Mac Pro‘,9980),
(‘Bike‘,800),
(‘watch‘,10600),
(‘Coffee‘,31),
(‘AlexPython‘,80),
]
shop_list = []
salary = input("Please input your salary:")
if salary.isdigit():
salary = int(salary)
while True:
for index,item in enumerate(product_list):
#print(product_list.index(item),item)enumerate
print(index,item)
#break
user_choice = input ("选择要买什么")
if user_choice.isdigit():
user_choice=int(user_choice)
if user_choice <len(product_list)and user_choice>=0:
p_item = product_list[user_choice]
if p_item[1] <= salary:
shop_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[42;1m你余额只剩[%s];啦,还买个毛线啊\033[0m" % salary)
else:
print("product code [%s] is not exist !"% user_choice)
elif user_choice ==‘q‘:
print("---------------shopping list-----------")
for p in shop_list:
print(p)
print("Your current balance:",salary)
exit()
else:
print("invalid option")





































以上是关于菜鸟生活(python)之购物车列表的主要内容,如果未能解决你的问题,请参考以下文章

python学习笔记——贰之购物车小程序_服务端

python学习笔记——贰之购物车小程序_客户端

Python小程序之购物车

Python之购物车

python学习--购物车3

快递,菜鸟驿站,直播购物:老年人的电商之墙