python 实战之商品管理数据库操作

需求.改写商品管理的程序,改为从数据库里面取数据

原代码为

import json

FILE_NAME = 'a.json' #常量
def read_products():
with open(FILE_NAME,encoding='utf-8') as fr:
return json.load(fr)

def write_products(data):
with open(FILE_NAME,'w',encoding='utf-8') as fw:
json.dump(data,fw,ensure_ascii=False,indent=4)

def is_digit(number):
s = str(number)
if s.isdigit():
if int(s) > 0:
return True

def is_price(price): #>0的整数和小数都可以 #1.7
s = str(price)
if is_digit(s):
return True
else:
if s.count('.') == 1: # 1.3
left, right = s.split('.')
if left.isdigit() and right.isdigit(): # 正小数 #0.0
if float(s)>0:
return True

def show_product():
product_name = input('请输入商品名称:').strip()
if product_name:
products = read_products()
if product_name == 'all':
print(products)
elif product_name not in products:
print('商品不存在')
else:
product = products.get(product_name)
print('商品信息:', product)
else:
print('不能为空')

def add_product():
product_name = input('请输入商品名称:').strip()
price = input('请输入商品价格:').strip()
count = input('请输入商品数量:').strip()
if product_name and price and count:
if is_price(price) and is_digit(count):
products = read_products()
if product_name not in products:
products[product_name] = {"count":count,"price":price}
write_products(products)
print('商品新增成功!')
else:
print('商品已经存在')
else:
print('价格/数量不合法')
else:
print('不能为空')


def modify_product():
product_name = input('请输入商品名称:').strip()
# new_product_name = input('请输入新的商品名称:').strip()
price = input('请输入商品价格:').strip()
count = input('请输入商品数量:').strip()
if product_name and price and count:
if is_price(price) and is_digit(count):
products = read_products()
if product_name in products:
# products.pop(product_name)
products[product_name] = {"count":count,"price":price}
# products[new_product_name] = {"count":count,"price":price}
write_products(products)
print('商品修改成功!')
else:
print('商品不存在')
else:
print('价格/数量不合法')
else:
print('不能为空')


def delete_product():
product_name = input('请输入商品名称:').strip()
if product_name:
products = read_products()
if product_name not in products:
print('商品不存在')
else:
products.pop(product_name)
write_products(products)

else:
print('不能为空')
choice = input('1、查看商品 2、新增 3、修改 4、删除: ')
func_map = {'1':show_product,'2':add_product,'3':modify_product,'4':delete_product}
if choice in func_map:
func_map[choice]()
else:
print('请输入正确的选项!')
思考

修改成数据库的操作代码为


posted @ 2020-09-15 16:28  测试董先生  阅读(468)  评论(0编辑  收藏  举报