Skip to content

Instantly share code, notes, and snippets.

@Vasanth375
Created January 25, 2023 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vasanth375/084d69b8ea1159b7de72a20072bcbb9a to your computer and use it in GitHub Desktop.
Save Vasanth375/084d69b8ea1159b7de72a20072bcbb9a to your computer and use it in GitHub Desktop.
class Calculator:
def add(self, a, b=0, *args):
result = a + b
for i in args:
result += i
return result
calc = Calculator()
print(calc.add(1, 2, 3, 4, 5)) # Output: 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment