簡單購物車實現

2021-09-07 13:15:52 字數 738 閱讀 9322

作業二:簡單購物車

# 實現列印商品詳細資訊,使用者輸入商品名和購買個數,則將商品名,**,購買個數加入購物列表,

# 如果輸入為空或其他非法輸入則要求使用者重新輸入

shopping_list = 

while true:

print("*****====商品選項**********====")

msg_dic =

for k,v in msg_dic.items():

# \033[44m.... \033[0m表示字型的背景顏色

print('name:\033[44m \033[0m price:\033[42m \033[0m'.format(price=v,name=k))

print("******************************")

shname=input("請輸入以上你需要的商品的名稱:>>").strip()

if len(shname)==0 or shname not in msg_dic:

continue

while true:

number = input("請輸入你的購買個數:>>").strip()

if number.isdigit():

break

# 將商品名,**,購買個數加入購物列表

print(shopping_list)

簡單購物車

簡單購物車,要求如下 實現列印商品詳細資訊,使用者輸入商品名和購買個數,則將商品名,購買個數加入購物列表,如果輸入為空或其他非法輸入則要求使用者重新輸入msg dic good l while true for k in msg dic print k,msg dic k name input 商品...

python實現簡單購物車

encoding utf 8 author xianyt vertion python3 date 20180723 21 模擬實現選購商品 1 列出所有商品的編號 名稱和 2 選擇多個商品 3 檢視已經選擇的商品 單價 小計 和 總價 4 支付 輸入實付金額 折扣,輸出購物清單 總計 實付 找零 ...

vue實現簡單的購物車

lang en dir ltr charset utf 8 購物車例項title rel stylesheet href style.css type text css head on cloak v if list.length 0 th 商品名稱th 商品 th 購買數量th 操作th tr t...