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/
In questa pagina del sito puoi guardare il video online Scope and LEGB Rule Explained - Python Tutorial della durata di ore minuti seconda in buona qualità , che l'utente ha caricato DMK Data 23 ottobre 2019, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 1,087 volte e gli è piaciuto 31 spettatori. Buona visione!