Skip to content

Instantly share code, notes, and snippets.

@vext01
Created July 9, 2014 11:11
Show Gist options
  • Save vext01/ae45fb890897b6a423b8 to your computer and use it in GitHub Desktop.
Save vext01/ae45fb890897b6a423b8 to your computer and use it in GitHub Desktop.
x = 666
def print_x():
print(x) # OK, you can see x
def copy_x():
y = x # ok, you can copy x
def inc_x():
x = x + 1 # local variable 'x' referenced before assignment?!
print("print_x")
print_x()
print("copy_x")
copy_x()
print("inc_x")
inc_x()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment