Created
February 16, 2019 14:59
-
-
Save Ventsislav-Yordanov/2b44f1759a60df4869d70fecb67b680c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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