10.5 Simulating “Private” Attributes

  • Python programmers often use “private” attributes for data or utility methods that are essential to a class’s inner workings but are not part of the class’s public interface
  • Two leading underscores indicates that an attribute (like __hour) or method is “private” and should not be accessible to the class’s clients
  • Python renames such identifiers by preceding the attribute name with ClassName, as in _Time__hour
    • called name mangling

IPython Auto-Completion Shows Only “Public” Attributes

  • IPython does not show attributes with one or two leading underscores when you try to auto-complete an expression by pressing Tab

Demonstrating “Private” Attributes

# private.py
"""Class with public and private attributes."""

class PrivateClass:
    """Class with public and private attributes."""

    def __init__(self):
        """Initialize the public and private attributes."""
        self.public_data = "public"  # public attribute
        self.__private_data = "private"  # private attribute
  • Create an object of class PrivateData
In [1]:
from private import PrivateClass
In [2]:
my_object = PrivateClass()
  • Access the public_data attribute directly
In [3]:
my_object.public_data
Out[3]:
'public'
  • Attempt to access __private_data directly
In [4]:
my_object.__private_data
------------------------------------------------------------------------
AttributeError                         Traceback (most recent call last)
<ipython-input-4-d896bfdf2053> in <module>
----> 1 my_object.__private_data

AttributeError: 'PrivateClass' object has no attribute '__private_data'

©1992–2020 by Pearson Education, Inc. All Rights Reserved. This content is based on Chapter 5 of the book Intro to Python for Computer Science and Data Science: Learning to Program with AI, Big Data and the Cloud.

DISCLAIMER: The authors and publisher of this book have used their best efforts in preparing the book. These efforts include the development, research, and testing of the theories and programs to determine their effectiveness. The authors and publisher make no warranty of any kind, expressed or implied, with regard to these programs or to the documentation contained in these books. The authors and publisher shall not be liable in any event for incidental or consequential damages in connection with, or arising out of, the furnishing, performance, or use of these programs.