Skip to content

Instantly share code, notes, and snippets.

@lihaoyi
Created April 14, 2013 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lihaoyi/5384596 to your computer and use it in GitHub Desktop.
Save lihaoyi/5384596 to your computer and use it in GitHub Desktop.
def outer(x):
def inner():
print x
inner()
print x
outer(10) # 10 10
def outer(x):
def inner():
x = 20
inner()
print x
outer(10) # 10
def outer(x):
def inner():
x = x * 2
inner()
print x
outer(10) # UnboundLocalError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment