0 votes
in Python by
What do you understand by the term namespace in Python?

1 Answer

0 votes
by
A namespace in Python can be defined as a system that is designed to provide a unique name for every object in python. Types of namespaces that are present in Python are:

Local namespace

Global namespace

Built-in namespace

Scope of an object in Python:

Scope refers to the availability and accessibility of an object in the coding region.
...