python購物車小程序
阿新 • • 發佈:2018-05-05
else 根據 list true print while 代碼 rate pen
要求:
1.用戶輸入工資後展示商品列表
2.根據商品編號選擇商品
3.選擇商品後打印商品清單以及剩余工資
代碼如下:
# coding=utf-8
product_list = [
(‘iphone‘,5800),
(‘mac pro‘,9800),
(‘bike‘,800),
(‘watch‘,10600),
(‘coffee‘,31),
(‘Alex python‘,120),
]
shopping_list = []#購物車
salary = input("Input your salary:")
if salary.isdigit(): #判斷工資是否為數字
salary = int(salary)
while True:
for index,item in enumerate(product_list):#enumerate--取下標
print(index,item)#打印商品列表
#取下標print(product_list.index(item),item)
user_choice = input("選擇商品>>>:")
if user_choice.isdigit():#判斷用戶輸入是否為數字
user_choice = int(user_choice)
if user_choice < len(product_list) and user_choice >=0:#判斷用戶輸入的商品編號是否在下標範圍之內,len()-取列表下標長度
p_item = product_list[user_choice]#通過下標獲取商品價格
if p_item[1] <= salary:#買的起
shopping_list.append(p_item)#將該商品加到購物車
salary -= p_item[1]#扣錢
print("Added %s into shopping cart,your current banlance is \033[31;1m%s\033[0m"%(p_item ,salary))
else:#買不起
print("\033[41;1m你的余額只剩[%s]啦,買不起啦,你可選擇其他商品或者輸入‘q’退出\033[0m" % salary)
else:#輸入編號不存在
print("商品不存在[%s]",user_choice)
elif user_choice == ‘q‘:#退出
print("---------shopping list----------")#打印商品清單
for p in shopping_list:
print(p)
print("你的工資余額。。。",salary)
exit()
else:
print("invalid option")
python購物車小程序