码迷,mamicode.com
首页 > 其他好文 > 详细

购物车

时间:2017-08-06 15:57:01      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:watch   phone   and   else   for   训练   商品   取出   money   

继续坚持 学习python , 这个学习的重点的数组。 if,while 基础的训练。
1.新的知识点 enumerate 取出坐标


data = [
(‘iphone‘,5800),
(‘coffer‘,31),
(‘bike‘,800),
(‘watch‘,100800),
(‘book‘,10)
]
money = input("input you cash>>:")
shopping_list = []
if money.isdigit():
money = int(money)
while True:
for index,i in enumerate(data): #enumerate
#print(data.index(i),i) #下标显示
print(index,i)
choice = input("input you choice>>:")
if choice.isdigit():
choice = int(choice)
if choice < len(data) and choice >=0:
p_i = data[choice] #通过下标把商品取出
if p_i[1] <= money: ##买得起
shopping_list.append(p_i) #加入仓库
money -=p_i[1]
print("Added %s into shopping cart ,your current balance is \033[31;1m%s\033[0m " %(p_i,money))
else:
print("\033[41;1m你的余额不足[%s]\033[0m"% money)
else:
print("prodect code [%s] is not exist" % choice)
elif choice ==‘q‘:
print("--shopping list---")
for p in shopping_list:
print(p)
print("your current blance",money)
print("BYE!")
exit()
#break
else:
print("out of choose")

购物车

标签:watch   phone   and   else   for   训练   商品   取出   money   

原文地址:http://www.cnblogs.com/jack2017/p/7294709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!