0 votes
in Python by
Explain the difference between local and global namespaces?

1 Answer

0 votes
by

Local namespaces are created within a function when that function is called. Global namespaces are created when the program starts.

...