+ 17

What is namespace in python?

11th May 2019, 4:41 PM
Abhishek Gupta
7 Answers
11th May 2019, 4:51 PM
CĂ©pagrave
CĂ©pagrave - avatar
+ 13
Namespace is the naming system use to make sure that names are unique to avoid naming conflicts
11th May 2019, 4:53 PM
Abhishek Gupta
+ 3
Namespace is the naming system in python
11th May 2019, 4:56 PM
A Gupta
A Gupta - avatar
+ 2
Variable name var, Namespace name NamSpac. NamSpac.var Namespace is just a dot separated name before variable name.
11th May 2019, 6:14 PM
Seb TheS
Seb TheS - avatar
+ 2
its a system that defines scope of the name(any name defined)in a program. (python Built-in namespace)>(Global Namespace)>Local Namespace) is scope of different namespaces in pyhton
12th May 2019, 10:05 AM
Sahil Rana
Sahil Rana - avatar
+ 1
A namespace is a simple system to control the names in a program. It ensures that names are unique and won't lead to any conflict. Also, add to your knowledge that Python implements namespaces in the form of dictionaries. It maintains a name-to-object mapping where names act as keys and the objects as values. for more knowledge visit http://pythonandmltrainingcourses.com/best-summer-training-in-noida/
15th May 2019, 7:44 AM
navdeep
0
is a fundamental program
14th May 2019, 6:42 AM
Leo Francis
Leo Francis - avatar