InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about namespaces in Python? |
|
Answer» The namespace is a fundamental idea for organising and structuring code that is particularly useful in large projects. However, if you're new to programming, this MAY be a difficult concept to grasp. As a result, we made an effort to MAKE namespaces more comprehensible. A namespace is a simple WAY to manage the names in a programme. It ensures that the names are DIFFERENT and won't be misunderstood. Python likewise EMPLOYS dictionaries to manage namespaces and keeps track of a name-to-object mapping, with names serving as keys and objects as values. |
|