Computer Science, asked by Anonymous, 5 hours ago

What is Scope Resolution in Python?​

Answers

Answered by apoorvaappu576
3

Explanation:

Scope resolution is required when a variable is used to determine where should its value be come from. Scope resolution in Python follows the LEGB rule. L, Local — Names assigned in any way within a function (or lambda), and not declared global in that function

Answered by karanvivek60
2

Explanation:

Scope resolution is required when a variable is used to determine where should its value be come from. Scope resolution in Python follows the LEGB rule. L, Local — Names assigned in any way within a function (or lambda), and not declared global in that function.

Similar questions