This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = [] |