Example & Tutorial understanding programming in easy ways.

What is namespace in Python ?

In Python, every name introduced has a place where it lives and can be hooked for. This is known as namespace.

- It is like a box where a variable name is mapped to the object placed. Whenever the variable is searched out, this box will be searched, to get corresponding object.

Read More →