The LEGB rule is central to the way Python works. Whenever we call a name, the LEGB rule is used to find the value (or rather object) attached to that name. LEGB stands for Local, Enclosing, Global and Builtin. This is the order in which Python searches for name. For an expression in a local namespace, Python goes looking for the assignment of the name in that local namespace first. It goes upward from the expression and when it reached the end of the local namespace, it goes to the enclosing, then the global and finally the builtin namespace.
Within a script/module, only functions, classes and list comprehensions (only in Python 3!) create their own local scope. When an expression is called in the global namespace, Python never looks in the local or enclosing namespaces. The LEGB rule only goes in one direction. Therefore, local name assignments do not affect global assignments.
Feel free to leave a comment if you have any questions or feedback.
Python:
https://www.python.org/
En esta página del sitio puede ver el video en línea Scope and LEGB Rule Explained - Python Tutorial de Duración hora minuto segunda en buena calidad , que subió el usuario DMK Data 23 octubre 2019, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 1,087 veces y le gustó 31 a los espectadores. Disfruta viendo!