Skip to content

Instantly share code, notes, and snippets.

@KennethanCeyer
Created March 4, 2017 20:13
Show Gist options
  • Save KennethanCeyer/6d6ba68b76354398f770b1e0adc0b8e2 to your computer and use it in GitHub Desktop.
Save KennethanCeyer/6d6ba68b76354398f770b1e0adc0b8e2 to your computer and use it in GitHub Desktop.
Python module definition
from math import sum
print(sum(1, 2))
def sum(*args):
total = 0
for item in args:
total += item
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment