Quark’s Outlines: Python Name Spaces Overview, Historical Timeline, Problems & Solutions An Overview of Python Name Spaces What is a Python name space? When you write code in Python, you give names to values. A Python name space is the place where those names are stored. It is like a labeled shelf that holds objects. When you ask for a name, Python looks in the shelf to find it. A name space is a mapping between names and objects. In Python, that mapping is usually a dictionary. Each name sp
Comment
Sign in to join the discussion.
Loading comments…