Scope in python

PHOTO EMBED

Sun Sep 21 2025 20:49:17 GMT+0000 (Coordinated Universal Time)

Saved by @oforey #python

x = "global"

def outer():

    x = "enclosing"

    def inner():

        x = "local"

        print(x)

    inner()

    print(x)

outer()

print(x)
content_copyCOPY