- what isBuilt-in Scope
Answers
Answered by
0
Answer:
the final scope in the python is the built-in scope. if an identifier isn't found within any of the nested scopes within a module and it is not defined in a global scope, then python will examine the built-in identifiers to see if it is defined there.
Similar questions