This Python project analyzes students' exam scores in different subjects and calculates:
- Each student's best subject (highest score)
- Each student's worst subject (lowest score)
- Each student's average score across all subjects
- students_result.py: Python script that reads the CSV file and calculates the results.
- students_score.csv: Sample dataset containing students' names and their scores in Math, Physics, Chemistry, Biology, and English.
- Install Python (version 3.12).
- Install pandas if not already installed: `bash pip install pandas
- Run the script: py students_result.py
- Python 3.12
- pandas
Created as a practice project for learning Python.