python 購物車程式
wage = int(input(「請輸入您的工資:」))
commodity_list = [(「iphone8」, 6000),(「mac」,12000),(「lv」,30000),(「dior」,500),(「sports」,6000)]
shoplist =
for index,intem in enumerate(commodity_list):
print(index,intem)
shoplist =
b=0
for a in range(4):
user_choice= input (「輸入您想購買的商品編號:」)
if user_choice.isdigit():
user_choice=int(user_choice)
if user_choice < len(commodity_list) and user_choice>=0:
c_item = commodity_list [user_choice]
if c_item1
print(「added %s into your shopping cart,your current wage is %s」%(c_item,wage))
else :
print(「你的餘額只剩%s,還買個毛線啊」%wage)
elif user_choice == 『q』:
print(「已按要求退出」)
break
else :
print(「請輸入合法數字」)
print(「————-shoppinglist—————」)
for p in shoplist:
print(p)
print(「您的餘額為%s」%wage)
,在聯網後,請務必及時發表或者儲存到伺服器草稿箱。
ie9以下不支援
ie9,10,11存在以下問題
不支援離線功能
ie9不支援檔案匯入匯出
ie10不支援拖拽檔案匯入
python 購物車程式
程式 購物車程式 需求 啟動程式後,讓使用者輸入工資,然後列印商品列表 允許使用者根據商品編號購買商品 使用者選擇商品後,檢測餘額是否夠,夠就直接扣款,不夠就提醒 可隨時退出,退出時,列印已購買商品和餘額 while true salary int input 請輸入您的工資 info 商品資訊 1...
python購物車程式
目的 1 啟動程式後,讓使用者輸入工資,然後列印商品列表 2 允許使用者根據商品編號購買商品 3 使用者選擇商品後,檢測餘額是否夠,夠直接扣款,不夠就提醒 4 可隨時退出,退出時列印已購買商品和餘額 product list tuppercup 90 huawei mobile 4390 cloth...
python購物車程式
乙個python購物車迴圈程式 輸入工資 列印列表選擇商品 確認購買?不確認返回商品列表 計算餘額 已購商品計件 累計消費 繼續列印商品列表 確認購買?q選擇退出 退出之後列印已購商品 餘額 coding utf 8 version python3.6 name shiwei 購物車程式 produ...