Skip to content

Instantly share code, notes, and snippets.

View Austyy-Austyy's full-sized avatar

Austin Anthony Austyy-Austyy

  • Accenture India
  • Bangalore
View GitHub Profile
@Austyy-Austyy
Austyy-Austyy / student_grades_statistics.py
Created October 30, 2025 06:23
Python script to calculate student grades, compute statistics (mean, median, mode), assign letter grades, and visualize results using NumPy, SciPy, and Matplotlib.
import numpy
from scipy import stats
import matplotlib.pyplot
# Get number of students
num_students = int(input("Enter the number of students: "))
# Initialize empty list for marks
marks = []