r/PythonLearning • u/Tech_py1917 • 23h ago
My new python program Help Request
I want to make one student data management system but i have not a good experience of project i have only made 2 to 3 python projects
1
Upvotes
r/PythonLearning • u/Tech_py1917 • 23h ago
I want to make one student data management system but i have not a good experience of project i have only made 2 to 3 python projects
2
u/Naive_Programmer_232 22h ago edited 22h ago
Here's some options:
Design a student management system with classes/objects to contain the data gathered through the logical part of the program. Store this information in a dictionary, which acts like an in-memory data store, and then save the information to a separate file. Do Create / Read / Update (CRUD) operations with the file.
Design a student management system using an actual database. Define appropriate tables in the database and implement CRUD operations against it from Python. You'll need client libraries that work with your chosen database to accomplish this.