为了账号安全,请及时绑定邮箱和手机立即绑定

这个为什么报错

class Animal():    
    def __init__(self, name, age, location):        
        self.__name = name        
        self.__age = age        
        self.location = location        
    def get_name(self):        
        return self.__name        
    def get_age(self):        
        return self.__age            
    def get_location(self):       
        return self.location                

dog = Animal('yiky', 3, 'Cario')
print(dog.get_name)
print(dog.get_age)
print(dog.get_location)


正在回答

2 回答

print(dog.get_name())

print(dog.get_age())

print(dog.get_location())

0 回复 有任何疑惑可以回复我~

call method 的时候加个(), 例如dog.get_name()

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这个为什么报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信