简体   繁体   中英

Why I am getting unboundLocalError in below function?

x=23

def printer():
    
    print(x)

    x=x+1

    return x

printer()

Error: UnboundLocalError: local variable 'x' referenced before assignment

Use global keyword to fix the issue

def printer():

    global x
    
    print(x)

    x=x+1

    return x

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM