Skip to content

Instantly share code, notes, and snippets.

@zikrillah
Created October 27, 2016 09:17
Show Gist options
  • Save zikrillah/8e97e877ffcc1e6c4dfc01a9ff5e0109 to your computer and use it in GitHub Desktop.
Save zikrillah/8e97e877ffcc1e6c4dfc01a9ff5e0109 to your computer and use it in GitHub Desktop.
def spam():
eggs = 'spam local'
print(eggs) # prints 'spam local'
def bacon():
eggs = 'bacon local'
print(eggs) # prints 'bacon local'
spam()
print(eggs) # prints 'bacon local'
eggs = 'global'
bacon()
print(eggs) # prints 'global'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment