Python programming, student status management system, homework reference, python applet

Python programming, student status management system, homework reference, python applet

Project Description

The student status management system is used for school teachers to maintain records of student status and personal information. It can record the basic information of students in school, and can add, modify, view, and delete student status information.

download

Included documents:
Link: https://pan.baidu.com/s/1rAxYy7MHhBQtXjGkOtG3Hg
Extraction code: 0v9t

system process

insert image description here
Account/password: admin/123456

code description

field description

Stu: student status information cache array, used to cache all student status information
Array list object field description:
num: student status number
name: student name
sex: gender
age: age
className: class

Description of custom functions

  1. System entry function: system()
  2. System login function: login()
  3. List of system functions: operate_item()
  4. Add student status information: add_stu()
  5. Modify student status information: update_stu()
  6. Delete student status information: del_stu()
  7. Check the student status list: print_stu()
  8. Exit the system: exit_stu()

system operation

Startup project

  1. Enter cmd in the file address bar where the project file st.py is located to enter the command prompt window, and enter the command to start the project: python st.py.
  2. After entering the system, enter the system account: admin password: 123456, the successful login interface is as shown below:
    insert image description here
  3. Follow the prompts below to perform functional operations, taking adding student status and letter as an example:
    insert image description here

Functional operation

  1. Start the project:
    Follow the operating instructions to start the project correctly, and the following interface will be displayed:
    insert image description here
  2. Enter the account password correctly, the following page should appear:
    insert image description here
  3. Entering the wrong account and password is not allowed to enter the system:
    insert image description here
  4. After successfully logging in to the system, enter the function command to enter the corresponding function normally:
    insert image description here
  5. Exit the system, enter the command to exit correctly, and jump to log in again
    insert image description here

Guess you like

Origin blog.csdn.net/nj0128/article/details/132160106