Skip to content

Instantly share code, notes, and snippets.

@thebopshoobop
Created July 31, 2017 02:55
Show Gist options
  • Save thebopshoobop/3058d8d68663b298a3651fe999ae20a7 to your computer and use it in GitHub Desktop.
Save thebopshoobop/3058d8d68663b298a3651fe999ae20a7 to your computer and use it in GitHub Desktop.
the_word = 'bird'
def foo():
print(the_word)
def baz():
print(the_word)
the_word = 'is too long'
foo() # 'bird'
baz() # UnboundLocalError: local variable 'the_word' referenced before assignment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment