Comment déclarer un attribut privé dans Python
class Base:
def __init__(self):
self.__private_attribute = 2 #two underscores before attribute declare it as private
Grotesque Gharial