MCPcopy
hub / github.com/Asabeneh/30-Days-Of-Python / add_numbers

Function add_numbers

mypackage/arithmetics.py:1–5  ·  view source on GitHub ↗
(*args)

Source from the content-addressed store, hash-verified

1def add_numbers(*args):
2 total = 0
3 for num in args:
4 total += num
5 return total
6
7
8def subtract(a, b):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected