如何从我们所穿的列表中找到均值和中位数?

时间:2018-10-29 21:00:57

标签: python python-3.x python-2.7

这是我的代码。

#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)

我可以问你如何找到我从中得到的清单的均值和中位数?请帮我!谢谢!

1 个答案:

答案 0 :(得分:-1)

这似乎是一个家庭作业问题,您应该使用Google“操作方法”,但鉴于您已经创建了一个新问题,我将提供一个简单的答案。

使用numpy

您有一个名为list的{​​{1}}。

执行以下操作:

grades