Skip to content

Instantly share code, notes, and snippets.

@janash
Last active September 24, 2023 05:41
Show Gist options
  • Save janash/af276fbca325a5ee9180227697e81ecc to your computer and use it in GitHub Desktop.
Save janash/af276fbca325a5ee9180227697e81ecc to your computer and use it in GitHub Desktop.
"""
Stats functions
"""
def mean(my_list):
my_sum = sum(my_list)
my_average = my_sum / len(my_list)
return my_average
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment