Skip to content

Instantly share code, notes, and snippets.

@danielscarvalho
Created April 1, 2017 02:25
Show Gist options
  • Save danielscarvalho/63693b246e8ea982a544ed9141e26c97 to your computer and use it in GitHub Desktop.
Save danielscarvalho/63693b246e8ea982a544ed9141e26c97 to your computer and use it in GitHub Desktop.
List Average
def getAverage(values):
return sum(values) / float(len(values))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment