Skip to content

Instantly share code, notes, and snippets.

@odragora
Created January 30, 2016 20:05
Show Gist options
  • Save odragora/09a3985e2f30295d2b9d to your computer and use it in GitHub Desktop.
Save odragora/09a3985e2f30295d2b9d to your computer and use it in GitHub Desktop.
test function
def sum(num_1, num_2):
result = num_1 + num_2
return result
test_number = sum(10 + 5)
print test_number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment