Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

protected vs private python

Protected : 
protected members of a class can be accessed by other members within 
the class and are also available to their subclasses.
Add a prefix _ (single underscore)

Private : 
The private members of a class are only accessible within the class.

 In Python, a private member can be defined by using a prefix 
  __ (double underscore).
 
PREVIOUS NEXT
Tagged: #protected #private #python
ADD COMMENT
Topic
Name
3+9 =