Skip to content

Instantly share code, notes, and snippets.

@ricardovsilva
Created February 1, 2016 16:26
Show Gist options
  • Save ricardovsilva/d56511069a99d77408be to your computer and use it in GitHub Desktop.
Save ricardovsilva/d56511069a99d77408be to your computer and use it in GitHub Desktop.
Example to calculate average from list in python
def calculate_average(verifide_notes):
float_list = map(float, verifide_notes)
average = sum(float_list)/float(len(float_list))
return average
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment