How do I calculate a mean with python?

William Bryant gogobebe2 at gmail.com
Mon Sep 16 19:33:35 EDT 2013


Hey I am new to python so go easy, but I wanted to know how to make a program that calculates the maen.

List = [15, 6, 6, 7, 8, 9, 40]
def mean():
    global themean, thesum
    for i in List:
        thecount = List.count(i)
        thesum = sum(List)
    themean = thesum / thecount

Why doesn't this work?



More information about the Python-list mailing list