How do you find the median of a list? | Newbie | | Join Date: Nov 2008
Posts: 2
| |
I have a little bit of trouble finding the median in a list. I am trying to ask the user what his/her marks are and i am trying to find the median. I have a little bit of trouble because the user could be inputting either an odd or an even number of marks but i don't know how to ask him/her. it would be great if someone could help me. This is what i have so far: -
mark = 0
-
count = 0
-
yourmarks =[]
-
while True:
-
marks = input("Enter student marks here[-1 to stop]")
-
yourmarks.append(marks)
-
count += 1
-
if marks == -1:
-
break
-
print "Your highest mark is",max(yourmarks)
-
del yourmarks[-1]
-
print "Your lowest mark is", min(yourmarks)
-
|  | Expert | | Join Date: Mar 2008 Location: California
Posts: 478
| | | re: How do you find the median of a list?
A number is even if dividing it by two leaves no remainder. To get the remainder from a division, you use the modulus operator, %. So you would use
len(yourmarks) % 2
if that is equal to zero, then there are an even number of items in youmarks.
By the way, it would be helpful if you used code tags around your code. Put [CODE] before the code and [/CODE] after it, so it shows up in a code box and the indentation isn't wrecked. Thanks.
I hope this is helpful.
| | Newbie | | Join Date: Nov 2008
Posts: 2
| | | re: How do you find the median of a list?
thanks for the help and advice but i still dont seem to understand what you are talking about.. could you show me exactly how you would do it?
|  | Expert | | Join Date: Mar 2008 Location: California
Posts: 478
| | | re: How do you find the median of a list?
You know what len does, right?
8 % 4 is equal to zero, because 8 is divisible by 4 with no remainder. But 11 % 4 is 3, because you get a remainder of 3 when you divide 11 by 4.
Does the following example help? -
if len(yourmarks) % 2 == 0:
-
print "Division by two leaves no remainder,"
-
print "so list length is even."
-
else:
-
print "There was a remainder,"
-
print "So the list contains an odd number of items."
-
| | Newbie | | Join Date: Jun 2007
Posts: 15
| | | re: How do you find the median of a list?
You want to find the median of a list? -
x=[1,2,5,2,3,763,234,23,1,234,21,3,2134,23,54]
-
median=sorted(x)[len(x)/2]
-
|  | Moderator | | Join Date: Oct 2006 Location: Nashville, TN
Posts: 1,563
| | | re: How do you find the median of a list? Quote:
Originally Posted by rogerlew You want to find the median of a list? -
x=[1,2,5,2,3,763,234,23,1,234,21,3,2134,23,54]
-
median=sorted(x)[len(x)/2]
-
That works great when the list length is an odd number. When it is an even number, you take the average of the two middle numbers in a sorted list. - def median(s):
-
i = len(s)
-
if not i%2:
-
return (s[(i/2)-1]+s[i/2])/2.0
-
return s[i/2]
| | Newbie | | Join Date: Nov 2009
Posts: 1
| | | re: How do you find the median of a list?
This post is a year old so I don't know if I'll get any replies, but my median function doesn't work.... It yields <function median at 0x01D36F30> this is wut i used, just like what is posted -
def median (y):
-
z = len(y)
-
if not z%2:
-
return (y[(z/2)-1] + y[z/2]) / 2
-
return y[z/2]
what am i doing wrong?
|  | Moderator | | Join Date: Oct 2006 Location: Nashville, TN
Posts: 1,563
| | | re: How do you find the median of a list?
You are not calling the function with an argument. You have another problem. If you have a list of integers and the length of the list is an even number, the function calculates the average of the two middle numbers. Dividing by the integer 2 results in integer division. In the example below, (8+9)/2 = 8 but the answer is 8.5. - >>> def median(y):
-
... z = len(y)
-
... if not z%2:
-
... return (y[(z/2)-1] + y[z/2]) / 2
-
... else:
-
... return y[z/2]
-
...
-
>>> median
-
<function median at 0x0109CEF0>
-
>>> y=[6,3,9,1,2,8,9,12,34,12]
-
>>> y.sort()
-
>>> median(y)
-
8
-
>>> y
-
[1, 2, 3, 6, 8, 9, 9, 12, 12, 34]
-
>>>
|  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,358 network members.
|