这是我的代码。
#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)
我可以问你如何找到我从中得到的清单的均值和中位数?请帮我!谢谢!
答案 0 :(得分:-1)
这似乎是一个家庭作业问题,您应该使用Google“操作方法”,但鉴于您已经创建了一个新问题,我将提供一个简单的答案。
使用numpy
。
您有一个名为list
的{{1}}。
执行以下操作:
grades