Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Last active May 25, 2020 22:11
Show Gist options
  • Save hsleonis/7a516f276839cb81f416d74e65e119ea to your computer and use it in GitHub Desktop.
Save hsleonis/7a516f276839cb81f416d74e65e119ea to your computer and use it in GitHub Desktop.
Returns the average of two or more numbers.
def mean(*args):
  return sum(args, 0.0) / len(args)
mean(*[1, 2, 3]) # 2.0
mean(1, 2, 3) # 2.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment