1.功能简介
此程序模拟员工信息数据库操作,按照语法输入指令即能实现员工信息的增、删、改、查功能。
2.实现方法
"background-color: #ccffcc">"background-color: #ccffcc">数据库操作:
1.增(add to xxxx values xxxx)
示例:add to staff_table values Alex Li,22,13651054608,IT,2013-04-01
2.删(delete from xxxx where xxxx)
示例:delete from staff_table where age<=18 and enroll_date like "2017"
3.改(update xxxx set xxxx where xxxx)
示例:
update staff_table set dept="Market",age=30 where dept="IT" and phone like "189"
4.查(select xxxx from xxxx where xxxx)
示例1:
select * from staff_table where age>=25 and not phone like "136" or name like "李"
示例2:
select name,age,dept from db.txt where id<9 and enroll_date like "-05-"
示例3:select * from staff_table where * #显示所有记录
"1,Alex Li,22,13651054608,IT,2013-04-0"。
3.流程图
4.代码
#!usr/bin/env python3 #_*_coding:utf-8_*_ 'staff infomation management module' __author__='Byron Li' '''----------------------------------------------员工信息数据库操作指令语法--------------------------------------------- 数据记录包含6个关键字:id,name,age,phone,dept,enroll_date 指令可用的逻辑运算符:<,>,=,<=,>=,like,and,or,not 1.增(add to xxxx values xxxx) 示例:add to staff_table values Alex Li,22,13651054608,IT,2013-04-01 2.删(delete from xxxx where xxxx) 示例:delete from staff_table where age<=18 and enroll_date like "2017" 3.改(update xxxx set xxxx where xxxx) 示例:update staff_table set dept="Market",age=30 where dept="IT" and phone like "189" 4.查(select xxxx from xxxx where xxxx) 示例1:select * from staff_table where age>=25 and not phone like "136" or name like "李" 示例2:select name,age,dept from db.txt where id<9 and enroll_date like "-05-" 示例3:select * from staff_table where * #显示所有记录 ---------------------------------------------------------------------------------------------------------------------''' import re import os class staff(object): #员工类 def __init__(self,*args): #员工信息初始化:从字符串列表传参赋值 self.id=args[0] self.name=args[1] self.age=args[2] self.phone=args[3] self.dept=args[4] self.enroll_date=args[5] self.allinfo=','.join(args) def update(self,**kwargs): #员工信息更新:从字典传参赋值 if 'id' in kwargs: self.id=kwargs['id'] if 'name' in kwargs: self.name=kwargs['name'] if 'age' in kwargs: self.age = kwargs['age'] if 'phone' in kwargs: self.phone=kwargs['phone'] if 'dept' in kwargs: self.dept=kwargs['dept'] if 'enroll_date' in kwargs: self.enroll_date = kwargs['enroll_date'] self.allinfo = ','.join(map(str,[self.id, self.name, self.age, self.phone, self.dept, self.enroll_date])) def print_info(self,info): #员工信息打印显示:传入的参数为"*"或数据记录的若干个关键字 if info=='*': print(self.allinfo) else: info=info.split(',') res=[] for i in info: if hasattr(self,i.strip()): res.append(str(getattr(self,i.strip()))) print(','.join(res)) def command_exe(command): #指令执行主函数,根据指令第一个字段识别何种操作,并分发给相应的处理函数执行 command=command.strip() return { 'add':add, 'delete':delete, 'update':update, 'select':search, }.get(command.split()[0],error)(command) def error(command): #错误提示函数,指令不合语法调用该函数报错 print('\033[31;1m语法错误,请重新输入!\033[0m\n') def add(command): #增加员工记录函数 command_parse=re.search(r'add\s*"数据库本次\033[31;1m新增1条\033[0m员工信息:", info_new) #新增记录打印 else: error(command) def delete(command): #删除员工记录函数 command_parse=re.search(r'delete\s*"数据库本次共\033[31;1m删除%d条\033[0m员工信息,如下:"%count) for staff_temp in staff_list: staff_temp.print_info('*') #删除记录打印 else: error(command) def update(command): #修改和更新员工记录函数 command_parse=re.search(r'update\s(.*"\1":', info)) #将字符串进一步修饰最终转化成字典 count = 0 staff_list = [] with open(data_file,'r',encoding='utf-8') as fr, open(data_file_bak,'w',encoding='utf-8') as fw: for line in fr: staff_temp=staff(*line.strip().split(',')) if(verify(staff_temp,condition)): #验证员工信息是否符合条件 staff_temp.update(**info) #调用员工对象成员函数更新信息 count += 1 staff_list.append(staff_temp) fw.write(staff_temp.allinfo) fw.write('\n') fw.flush() os.remove(data_file) os.rename(data_file_bak,data_file) print("数据库本次共\033[31;1m更新%d条\033[0m员工信息,如下:"%count) for staff_temp in staff_list: staff_temp.print_info('*') #更新记录打印 else: error(command) def search(command): #查询员工记录函数 command_parse=re.search(r'select\s(.*"*"为显示整体记录 data_file=command_parse.group(2).strip() #数据库文件 condition=command_parse.group(3).strip() #检索条件 count = 0 staff_list = [] with open(data_file,'r',encoding='utf-8') as fr: for line in fr: staff_temp=staff(*line.strip().split(',')) if(verify(staff_temp,condition)): #验证员工信息是否符合条件 count += 1 staff_list.append(staff_temp) print("数据库本次共\033[31;1m查询到%d条\033[0m员工信息,如下:" % count) for staff_temp in staff_list: staff_temp.print_info(info) #查询记录打印 else: error(command) def verify(staff_temp,condition): #员工信息验证函数,传入一个员工对象和条件字符串 if condition.strip()=='*':return True #如果条件为'*',即所有记录都满足条件 condition_list=condition.split() #检索条件字符串转列表 if len(condition_list)==0:return False logic_str=['and','or','not'] #逻辑运算字符串 且、或、非 logic_exp=[] #单个条件的逻辑表达式组成的列表,形如[‘age',' ','>','=',20] 或 [‘dept',' ','like',' ','HR'] logic_list=[] #每个条件的表达式的计算结果再重组后的列表,形如 [‘True','and','False','or','not','False'] for i in condition_list: if i in logic_str: if(len(logic_exp)!=0): logic_list.append(str(logic_cal(staff_temp,logic_exp))) #逻辑表达式计算并将返回的True或False转化成字符串添加到列表 logic_list.append(i) logic_exp=[] else: logic_exp.append(i) logic_list.append(str(logic_cal(staff_temp, logic_exp))) return eval(' '.join(logic_list)) #列表转化成数学表达式完成所有条件的综合逻辑运算,结果为True或False def logic_cal(staff_temp,logic_exp): #单个逻辑表达式的运算函数 logic_exp = re.search('(.+"==" logic_exp[1]='==' if logic_exp[1]=='like': #运算符为like的表达式运算 return re.search(logic_exp[2].strip("'").strip('"'),logic_exp[0]) and True elif(logic_exp[0].isdigit() and logic_exp[2].isdigit()): #两头为数字的运算,直接eval函数转数学表达式 return eval(''.join(logic_exp)) elif(logic_exp[1]=='=='): #非数字的运算,即字符串运算,此时逻辑符只可能是‘=',若用eval函数则字符串会转成无定义变量而无法计算,所以拿出来单独用"=="直接计算 return logic_exp[0]==logic_exp[2].strip("'").strip('"') #字符串相等判别,同时消除指令中字符串引号的影响,即输引号会比记录中的字符串多一层引号 else: #其他不合语法的条件格式输出直接返回False return False else: return False if __name__=='__main__': #主函数,数据库指令输入和执行 while(True): command=input("请按语法输入数据库操作指令:") #指令输入 if command=='exit': print("数据库操作结束,成功退出!".center(50, '*')) break command_exe(command) #指令执行
以上这篇Python 模拟员工信息数据库操作的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
数据库员工信息表
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]