Skip to content

Instantly share code, notes, and snippets.

@Billmike
Created April 26, 2020 12:29
Show Gist options
  • Save Billmike/f1ee6f73b85b09cb6acedfc1c93e4631 to your computer and use it in GitHub Desktop.
Save Billmike/f1ee6f73b85b09cb6acedfc1c93e4631 to your computer and use it in GitHub Desktop.
def multi_add(*args):
result = 0
for x in args:
result = result + x
return result
print(1, 2, 3, 4, 5) # 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment