python_project
python_project
Write a Python system that manages student data and generates reports.
Input Details:
The program asks the user to input the number of students and subjects, their names,
and marks for each subject as following:
3
2 Enter Subject(1): C#
4
Enter Subject(2): Python
Enter Student Name(2): Sami 3
Students
Mark for C#: 60
Depends
Mark for Python: 71 on input
Define Functions:
1- show_menu(To View the menu). To show the menu:
2- show_student_details. (To View All Student Records Name,Subject and Mark). As following:
Student(1):
Student Name(1): Ahmad
Student(2):
Student Name(2): Sami
Student(3):
Student Name(3): Khaled
Avg: 75
Student(2): Sami
Avg: 65.5
Student(3): Khaled
Avg: 44.5
Avg: 75
Avg: 65.5
Avg: 44.5
12.main()
Gets student details and calculates statistics.
Displays the menu and handles user input to select the desired action.