python編寫商品管理
阿新 • • 發佈:2018-09-02
encoding run odi product 查看 價格 iphone lse ret
# 1、實現一個商品管理的程序。
# #輸出1,添加商品 2、刪除商品 3、查看商品
# 添加商品:
# 商品的名稱:xxx 商品如果已經存在的話,提示商品商品已經存在
# 商品的價格:xxxx 數量只能為大於0的整數
# 商品的數量:xxx,數量只能為大於0的整數
# 2、刪除商品:
# 輸入商品名稱:
# iphone 如果輸入的商品名稱不存在,要提示不存在
# 3、查看商品信息:
# 輸入商品名稱:
# iphone:
# 價格:xxx
# 數量是:xxx
# all:
# print出所有的商品信息
import json
def add_product():
product = input(‘請輸入商品名稱:‘).strip()
count = input(‘請輸入商品數量:‘).strip()
price = input(‘請輸入商品價格:‘).strip()
f = open(‘product.json‘, ‘a+‘, encoding=‘utf-8‘)
f.seek(0)
products = json.load(f)
if product == ‘‘:
print(‘商品名稱不能為空‘)
elif product in products:
print(‘商品已存在‘)
elif not count.isdigit():
print(‘商品數量必須為正整數‘)
elif not price.isdigit():
print(‘商品價格必須為正整數‘)
else:
products[product] = {}
products[product][‘count‘] = int(count)
products[product][‘price‘] = int(price)
f.seek(0)
f.truncate()
json.dump(products, f, indent=4, ensure_ascii=False)
f.close()
def show_product(product):
f = open(‘product.json‘, encoding=‘utf-8‘)
products = json.load(f)
f.close()
if (product==‘all‘):
return products
elif not (product in products):
print(‘商品不存在‘)
else:
#print(products[product])
return product+‘:\n 數量:‘+str(products[product][‘count‘])+‘\n 價格:‘+str(products[product][‘price‘])
def del_product(product):
f = open(‘product.json‘, ‘a+‘, encoding=‘utf-8‘)
f.seek(0)
products = json.load(f)
if not (product in products):
print(‘商品不存在‘)
else:
del products[product]
f.seek(0)
f.truncate()
json.dump(products, f, indent=4, ensure_ascii=False)
f.close()
print("輸出1、添加商品 2、刪除商品 3、查看所有商品")
choice=input()
if choice=="1":
add_product()
elif choice=="2":
product=input(‘請輸入要刪除的商品名稱:‘)
del_product(product)
elif choice=="3":
product=input(‘請輸入要查詢的商品名稱:‘)
print(show_product(product))
else:
print(‘輸入有誤‘)
python編寫商品管理