Can nonlocal be used to recursively reference names in higher levels of scope?
In Python, the nonlocal
keyword allows code in an inner scope to access a name in the enclosing scope.
In Python, the nonlocal
keyword allows code in an inner scope to access a name in the enclosing scope.