在B站自學Python 站主:Python_子木 授課:楊淑娟 平臺: 馬士兵教育 python: 3.9.9 #python打包exe文件 #安裝PyInstaller pip install PyInstaller #-F打包exe文件,stusystem\stusystem.py到py的路徑, ...
在B站自學Python
站主:Python_子木
授課:楊淑娟
平臺: 馬士兵教育
python: 3.9.9
python打包exe文件
#安裝PyInstaller
pip install PyInstaller
#-F打包exe文件,stusystem\stusystem.py到py的路徑,可以是絕對路徑,可以是相對路徑
pyinstaller -F stusystem\stusystem.py
學生信息管理系統具體代碼如下
import os.path
filename='student.txt'
def main():
while True:
menu()
choice = int(input('請選擇'))
if choice in range(8):
if choice==0:
answer=input('您確定要退出系統嗎?y/n')
if answer.lower()=='y':
print('謝謝您的使用!')
break #退出系統
else:
continue
if choice==1:
insert()
if choice==2:
search()
if choice==3:
delete()
if choice==4:
modify()
if choice==5:
sort()
if choice==6:
total()
if choice==7:
show()
else:
print('無此功能,請按菜單重新選擇')
def menu():
print('=========================學生信息管理系統============================')
print('-----------------------------功能菜單------------------------------')
print('\t\t\t\t\t\t1.錄入學生信息')
print('\t\t\t\t\t\t2.查找學生信息')
print('\t\t\t\t\t\t3.刪除學生信息')
print('\t\t\t\t\t\t4.修改學生信息')
print('\t\t\t\t\t\t5.排序')
print('\t\t\t\t\t\t6.統計學生總人數')
print('\t\t\t\t\t\t7.顯示所有學生信息')
print('\t\t\t\t\t\t0.退出')
print('------------------------------------------------------------------')
def insert():
student_list=[]
while True:
id=input('請輸入ID(如1001):')
if not id:
break
name=input('請輸入姓名:')
if not name:
break
try:
english=int(input('請輸入英語成績:'))
python=int(input('請輸入Python成績:'))
java=int(input('請輸入Java成績:'))
except:
print('輸入無效,不是整數類型,請重新輸入')
continue
#將錄入的學生保存到字典中
student={'id':id,'name':name,'english':english,'python':python,'java':java}
#將學生信息添加到列表中
student_list.append(student)
answer=input('是否繼續添加?y/n')
if answer.lower()=='y':
continue
else:
break
#調用save()函數
save(student_list)
print('學生信息錄入完畢!!!')
def save(lst):
try:
stu_txt=open(filename,'a',encoding='utf-8')
except:
stu_txt=open(filename,'w',encoding='utf-8')
for item in lst:
stu_txt.write(str(item)+'\n')
stu_txt.close()
def search():
student_query=[]
while True:
id=''
name=''
if os.path.exists(filename):
mode=input('按ID查找請輸入1,按姓名查找請輸入2:')
if mode=='1':
id=input('請輸入學生ID:')
elif mode=='2':
name=input('請輸入學生姓名:')
else:
print('您輸入有誤,請重新輸入')
continue
with open(filename,'r',encoding='utf-8') as rfile:
student=rfile.readlines()
for item in student:
d=dict(eval(item))
if id!='':
if d['id']==id:
student_query.append(d)
elif name!='':
if d['name']==name:
student_query.append(d)
#顯示查詢結果
show_student(student_query)
#清空列表
student_query.clear()
answer=input('是否要繼續查詢?y/n\n')
if answer.lower()=='y':
continue
else:
break
else:
print('暫未保存學生信息')
return
def show_student(lst):
if len(lst)==0:
print('沒有查詢到學生信息,無數據顯示!!!')
return
#定義標題顯示格式
format_title='{:^6}\t{:^12}\t{:^8}\t{:^10}\t{:^10}\t{:^8}\t'
print(format_title.format('ID','姓名','英語成績','Python成績','Java成績','總成績'))
#定義內容顯示格式
format_data='{:^6}\t{:^12}\t{:^8}\t{:^8}\t{:^8}\t{:^8}\t'
for item in lst:
print(format_data.format(item.get('id'),
item.get('name'),
item.get('english'),
item.get('python'),
item.get('java'),
int(item.get('english'))+int(item.get('python'))+int(item.get('java'))
))
def delete():
while True:
student_id=input('請輸入要刪除的學生的ID:')
if student_id!='':
if os.path.exists(filename):
with open(filename,'r',encoding='utf-8') as file:
student_old=file.readlines()
else:
student_old=[]
flag=False #刪除標記
if student_old:
with open(filename,'w',encoding='utf-8') as wfile:
d={}
for item in student_old:
d=dict(eval(item)) #將字元串轉字典
if d['id']!=student_id:
wfile.write(str(d)+'\n')
else:
flag=True
if flag:
print(f'id為{student_id}的學生信息已被刪除')
else:
print(f'沒有找到ID為{student_id}的學生信息')
else:
print('無學生信息')
break
show() #刪除之後要重新顯示所有學生信息
answer=input('是否繼續刪除?y/n')
if answer.lower()=='y':
continue
else:
break
def modify():
show()
if os.path.exists(filename):
with open(filename,'r',encoding='utf-8') as rfile:
student_old=rfile.readlines()
else:
return
student_id=input('請輸入要修改的學員的ID:')
with open(filename,'w',encoding='utf-8') as wfile:
for item in student_old:
d=dict(eval(item))
if d['id']==student_id:
print('找到學生信息,可以修改他的相關信息了!')
while True:
try:
d['name']=input('請輸入姓名:')
d['english']=input('請輸入英語成績:')
d['python']=input('請輸入python成績:')
d['java']=input('請輸入java成績:')
except:
print('您的輸入有誤,請重新輸入!!!')
else:
break
wfile.write(str(d)+'\n')
print('修改成功!')
show()
else:
print(f'未找到ID為{student_id}的學生信息')
wfile.write(str(d)+'\n')
answer=input('是否繼續修改其他學生信息?y/n\n')
if answer.lower()=='y':
modify()
def sort():
show()
if os.path.exists(filename):
with open(filename,'r',encoding='utf-8') as rfile:
student_list=rfile.readlines()
student_new=[]
for item in student_list:
d=dict(eval(item))
student_new.append(d)
else:
return
asc_or_desc=input('請選擇(0.升序,1.降序):')
if asc_or_desc=='0':
asc_or_desc_bool=False
elif asc_or_desc=='1':
asc_or_desc_bool=True
else:
print('您的輸入有誤,請重新輸入')
sort()
mode=input('請選擇排序方式(1.按英語成績排序 2.按Python成績排序 3.按Java成績排序 4.按總成績排序)')
if mode=='1':
student_new.sort(key=lambda x:int(x['english']),reverse=asc_or_desc_bool)
elif mode=='2':
student_new.sort(key=lambda x:int(x['python']),reverse=asc_or_desc_bool)
elif mode=='3':
student_new.sort(key=lambda x:int(x['java']),reverse=asc_or_desc_bool)
elif mode=='4':
student_new.sort(key=lambda x:int(x['english'])+int(x['python'])+int(x['java']),reverse=asc_or_desc_bool)
else:
print('您的輸入有誤,請重新輸入')
sort()
show_student(student_new)
def total():
if os.path.exists(filename):
with open(filename,'r',encoding='utf-8') as rfile:
students=rfile.readlines()
if students:
print(f'一共有{len(students)}名學生')
else:
print('還沒有錄入學生信息')
else:
print('暫未保存數據信息...')
def show():
student_list = []
if os.path.exists(filename):
# 定義標題顯示格式
format_title = '{:^6}\t{:^12}\t{:^8}\t{:^10}\t{:^10}\t{:^8}\t'
print(format_title.format('ID', '姓名', '英語成績', 'Python成績', 'Java成績', '總成績'))
with open(filename,'r',encoding='utf-8') as rfile:
student = rfile.readlines()
for item in student:
d = dict(eval(item))
student_list.append(d)
if len(student_list)==0:
format_nodata = '{:^6}'
print(format_nodata.format('無數據'))
# 定義內容顯示格式
format_data = '{:^6}\t{:^12}\t{:^8}\t{:^8}\t{:^8}\t{:^8}\t'
for item in student_list:
print(format_data.format(item.get('id'),
item.get('name'),
item.get('english'),
item.get('python'),
item.get('java'),
int(item.get('english')) + int(item.get('python')) + int(item.get('java'))
))
student_list.clear()
else:
print('暫未保存過數據!!!')
if __name__ == '__main__':
main()