

# https://www.globalsino.com/ICs/page4853.html


class Example():

    def __init__(self):
        self.x = 1
        self._y = 2
        self.__z = 3
        
MyObj = Example()
print (dir(MyObj))

