Разница между вызовом метода и доступом к атрибуту

Я очень плохо знаком с Python и использую Python 3.3.1.

class Parent: # define parent class 
    parentAttr = 100
    age = 55

    def __init__(self): 
        print ("Calling parent constructor") 

    def setAttr(self, attr): 
        Parent.parentAttr = attr 

class Child(Parent):
    def childMethod(self):
        print ('Calling child method')

Теперь я создам

c=child
c.[here every thing will appear methods and attr (age,setAttr)]

Как я могу различить методы и атрибуты? Я имею в виду, когда я используюc.SetAtrr(Argument), а такжеc.SetAtrr=value?

Ответы на вопрос(1)

Ваш ответ на вопрос