基於Python的購物車小程式

2021-09-12 11:50:38 字數 495 閱讀 9321

用乙個列表內巢狀元組來儲存商品和**資訊,然後用while判斷是否餘額足夠,若是夠進入選購商品環節。

用列表的下標來代替商品,讓使用者輸入需要購買的,餘額足夠可以一直進行迴圈,餘額不足跳出

commodity=[

('手機',3000),

('咖啡',1000),

('電腦',5000),

('牛奶',100)

]

money= int(input('請輸入餘額:'))

while money>0:

shopping=int(input('請輸入購買的產品:'))

if shoppingmoney -= commodity[shopping][1]

print('餘額為{}'.format(money))

else:

print('沒有商品資訊')

else:

print('餘額不足')

Python購物車小程式

問題描述 商店有一系列商品,給出購買序列,然後輸入你的金額,然後選擇要購買的商品序號或是退出,如果持續購買餘額不足則提醒使用者餘額不足,然後如果使用者退出則列印使用者購買的商品列表,並列印使用者餘額。購物車程式 product list mac 9000 kindle 8000 tesla 9000...

購物車小程式

coding utf 8 shp iphone 5000 offee 35 shoes 800 pric list e int input 請輸入賬戶金額 while true for i,p in enumerate shp print i,p 0 p 1 enther input 請輸入要購買的...

12 小程式 購物車

資料庫連表查詢json server 連線資料中的表 localhost 3000 carts?expand good 當前購物車商品的詳情資訊 命名要有統一性 商品資訊資料名 goods 購物車資料id goodid 購物車介面 localhost 3000 carts?expand goodsh...