Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 16, 2019 14:59
Show Gist options
  • Save Ventsislav-Yordanov/2b44f1759a60df4869d70fecb67b680c to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/2b44f1759a60df4869d70fecb67b680c to your computer and use it in GitHub Desktop.
def get_average(*args):
return sum(args) / len(args)
print(get_average(5, 10, 15))
print(get_average(5, 10, 15, 20, 40))
print(get_average(1, 2, 3, 4, 0, 19, 20, 49, 17, 30, 1, 3, 2, 6, 7, 88))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment