Blurbs ansible coffeescript django dvcs erlang es6 hg javascript json lua mercurial peewee postgresql python scope sql sqlalchemy yaml

Globals and locals part 2 code pythonscope

a = 1

def f():
    a = a + 1
    # or even shorter!
    a += 1

f()

# >>> UnboundLocalError: local variable 'a' referenced before assignment