您好,登錄后才能下訂單哦!
自動加入購物車,推出顯示所有購物車
products = [['iphone8', 6888], ["MacPro", 14800], ['小米6', 2499], ['coffee', 31], ['boot', 80], ['Nike Shose', 799]] goods = [] print('-------------商品列表--------------') while True : for index, i in enumerate(products): print('%s %s %s' %(index,i[0],i[1])) user_change = input('請輸入您要購買的商品序號,如果推出請按Q/q:') if user_change.isdigit(): if int(user_change) > 0 and int(user_change) < len(products): goods.append(products[int(user_change)]) else : print('無此商品') elif user_change == 'q' or user_change == 'Q': print('您所購買的商品為:') for i in goods: print(i[0],i[1],) break else: print('請輸入正確的商品序號')
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。