Python如何實(shí)現(xiàn)的簡(jiǎn)單購(gòu)物車程序
購(gòu)物車程序需求:
- 用戶輸入購(gòu)物預(yù)算
- 展示商品列表
- 用戶購(gòu)買商品,每次購(gòu)買后提示用戶購(gòu)買信息和剩余預(yù)算
- 購(gòu)物完成后打印購(gòu)物花費(fèi)和購(gòu)物清單,并將商品從原列表移除
實(shí)現(xiàn)代碼如下:
# 正整數(shù)校驗(yàn)函數(shù)
def is_positive_int(input_num):
# noinspection PyBroadException
# 上一條注釋消除Pycharm 'Too broad exception clause' 警告
try:
positive_int = int(input_num)
if positive_int > 0:
return True
else:
return False
except Exception:
return False
# 打印商品列表函數(shù)
def print_list(__object):
# noinspection PyBroadException
# 上一條注釋消除Pycharm 'Too broad exception clause' 警告
try:
for index in range(0, len(__object)):
print('%d\t%-10s\t%s' % (index + 1, __object[index][0], __object[index][1]))
except Exception:
return None
# 定義初始商品列表和購(gòu)物車列表
product_list = [
['iPhone 12', 10000],
['iPhone 11', 6000],
['HUAWEI P30', 5000],
['榮耀 30', 4000],
['小米 10', 3000],
['紅米 K40', 2000]
]
product_list_shopped = []
print('Welcome to shopping mall!')
# 輸入購(gòu)物預(yù)算,并校核預(yù)算是否合法
while True:
budget_input = input('您的購(gòu)物預(yù)算是多少:')
if is_positive_int(budget_input):
budget = int(budget_input)
break
else:
print('輸入有誤,請(qǐng)重新輸入.', end='')
# 首次打印商品列表
print('Product list:')
print_list(product_list)
# 進(jìn)入購(gòu)物程序
while len(product_list) > 0:
choice = input('選擇購(gòu)買商品編號(hào)[退出:quit]:')
if choice == 'quit':
break
# 校驗(yàn)輸入的商品編號(hào)是否存在
elif is_positive_int(choice) and 0 < int(choice) < len(product_list) + 1:
product_index = int(choice) - 1
product_price = product_list[product_index][1]
# 余額判斷購(gòu)物是否成功
if budget > product_price:
budget = budget - product_price
product = product_list.pop(product_index)
product_list_shopped.append(product)
print('購(gòu)買成功,購(gòu)買了%s,花費(fèi)%d,您的剩余預(yù)算為:%d' % (product[0], product_price, budget))
print_list(product_list)
elif budget == product_price:
budget = budget - product_price
product = product_list.pop(product_index)
product_list_shopped.append(product)
print('購(gòu)買成功,您的預(yù)算已花完.')
break
else:
print('余額不足,請(qǐng)重新', end='')
else:
print('輸入有誤,請(qǐng)重新', end='')
# 購(gòu)物車不為空時(shí),打印購(gòu)物列表和花費(fèi)
if product_list_shopped:
sum_price = sum(x[1] for x in product_list_shopped)
print('您一共花費(fèi)%d,購(gòu)物清單如下:' % sum_price)
print_list(product_list_shopped)
print('歡迎下次光臨!')
代碼測(cè)試如下
1 預(yù)算校驗(yàn)

預(yù)算輸入限制為正整數(shù),其余輸入均會(huì)提示并要求重新輸入
預(yù)算校驗(yàn)可新增:
- 輸入的預(yù)算是否小于商品最低單價(jià)校驗(yàn)
- 退出選項(xiàng)
2 購(gòu)物
2.1 直接退出

2.2 單次購(gòu)物花完預(yù)算

2.3 多次購(gòu)物花完預(yù)算

2.4 多次購(gòu)物后主動(dòng)退出

2.5 商品被購(gòu)買完

以上就是Python如何實(shí)現(xiàn)的簡(jiǎn)單購(gòu)物車程序的詳細(xì)內(nèi)容,更多關(guān)于python 購(gòu)物車程序的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
Python中類創(chuàng)建和實(shí)例化的過(guò)程詳解
這篇文章主要介紹了Python中類創(chuàng)建和實(shí)例化過(guò)程,文中通過(guò)代碼示例講解的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作有一定的幫助,需要的朋友可以參考下2024-06-06
解決python2中unicode()函數(shù)在python3中報(bào)錯(cuò)的問(wèn)題
這篇文章主要介紹了在python2中unicode()函數(shù)在python3中報(bào)錯(cuò)的解決方案,希望給大家做個(gè)參考,下次出現(xiàn)這個(gè)問(wèn)題的時(shí)候,也知道如何應(yīng)對(duì)2021-05-05
python opencv實(shí)現(xiàn)簡(jiǎn)易畫(huà)圖板
這篇文章主要為大家詳細(xì)介紹了python opencv實(shí)現(xiàn)簡(jiǎn)易畫(huà)圖板,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-08-08
MacOS?Pytorch?機(jī)器學(xué)習(xí)環(huán)境搭建方法
這篇文章主要介紹了MacOS?Pytorch?機(jī)器學(xué)習(xí)環(huán)境搭建,學(xué)習(xí) Pytorch?,首先要搭建好環(huán)境,這里將采用?Anoconda + Pytorch + PyCharm 來(lái)一起構(gòu)建 Pytorch 學(xué)習(xí)環(huán)境,需要的朋友可以參考下2023-02-02

