202104-09 Python实现学生管理系统的完整代码(面向对象) 前言这个只是使用面向对象的方法写的构思和学生管理系统(JSON模块)是一样的file_manager.py"""Project:ClassStudentCreator:猫猫Createtime:2021-03-0408:18IDE:PyCharmIntroduction:https://blog.csdn.net/Cantevenl/article/details/115439530"""base_dir='files/'#定义一个变量文件路径#读文件的函数defread_file(file_name):try:withopen(base_dir+file_name,'r',encoding='utf8')asfile:... 继续阅读 >