Python商品清單並購買小練習(列表等)

2021-10-18 22:56:29 字數 1400 閱讀 1257

-- codeing = utf-8 --

@time : 2021/2/3 16:55

@author: lzp

@file : product_test.py

@software: pycharm

products =[[

"iphone"

,6888],

["macpro"

,14800],

["小公尺6"

,2499],

["coffee",31

],["book",60

],["nike"

,699]]

# 顯示商品列表

print

("-----商品列表----"

)i =

0for name in products:

print

("%d %s %d"

%(i,name[0]

,name[1]

))i +=

1# 詢問使用者待購買的物品,使用者按下q退出

j =0

key =

""list=[

]#定義購物車清單**

while key !=

"q":

number =

input

("請輸入商品編號:"

) number =

int(number)

list

)print

("加入的商品為:"

,products[number]

) j +=

1 key =

input

("是否購買完成(按q結束購買):"

)count =

0print

("\n---您購買的商品如下-----"

)print

("商品"

," "

,"**"

," "

,"數量"

)k =

0biaodan =

for name in products:

if name in

list

:[name,

list

.count(name)])

for thing in biaodan:

print

(thing[0]

[0],

" "

,thing[0]

[1],

" "

,thing[1]

) count = count +

int(thing[0]

[1])

print

("總價為:"

, count)

Python商品購買 小程式

設計乙個程式,完成 英雄 商品的購買 展示商品資訊 折扣 輸入商品 輸入購買數量 提示付款 輸入付款金額 列印購買小票 擴充套件 print print 王者榮耀 折扣3.8折,需要支付28元人民幣 print a int input 請輸入購買數量 b 28 a print print 你購買的 ...

python基礎程式設計簡單案例 購買商品

goods dict 002 003 004 def goods info print 20 列印商品列表 20 print 商品編號 t商品名稱 t商品 for i in goods dict.keys print t t format i,goods dict i name goods dict...

python3 從零單排3 函式 購買商品小程式

題目如下 商品檔案products.txt裡存的內容如下 使用者檔案user.txt裡存的內容如下 xg 管理員可以操作 1.給使用者充值,輸入使用者名稱,修改money,100000 2.新增商品 3.logout 普通使用者可以操作 1.看商品資訊 2.買東西,a.東西加products,mon...