This is the code that I have.
#Ask for how many students will be putting for grades.
students= input ('How many students that you have: ')
print (students)
#Create a list of the students and ask for the grades.
grades = []
students_grades =[]
while students_grades != 'stop':
students_grades = input("Enter the students grades you have, or enter 'stop' when you done: ")
if students_grades != 'stop':
grades.append(students_grades)
print(grades)
Could I ask you that how do we find the mean and median for the list that I got from this? please help me! Thank you !