Computer >> Computer tutorials >  >> Programming >> Python

What is difference between builtin and globals namespaces in Python?


Builtin namespace is global across the entire interpreter and all scripts running within an interpreter instance while the global namespace is global across a module, i.e., across a single file.