Chapter 11: Problem 9
In a Python class, how do you hide an attribute from code outside the class?
Short Answer
Expert verified
Answer: To hide an attribute in a Python class using name mangling, you need to prefix the attribute's name with double underscores "__". This technique discourages direct access to the attribute from code outside the class, promoting encapsulation. However, keep in mind that it doesn't provide perfect security and the attribute value can still be accessed with the mangled name.