Skip to content

Instantly share code, notes, and snippets.

@juanarrivillaga
Last active November 8, 2017 22:53
Show Gist options
  • Save juanarrivillaga/6ef776b0ad048c34457b6d8968e1816a to your computer and use it in GitHub Desktop.
Save juanarrivillaga/6ef776b0ad048c34457b6d8968e1816a to your computer and use it in GitHub Desktop.
def sum1(a,b,c):
global total
total = a + b + c
def ar():
sum1(1, 2, 3)
print(total / 3)
ar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment