例子中的Tim是怎末传入friend的?zaiteshufangfa__call__中friend也不用初始化吗?
def __call__(self, friend):
print 'My name is %s...' % self.name
print 'My friend is %s...' % friend
p = Person('Bob', 'male')
p('Tim')
My name is Bob...
My friend is Tim...
这里Tim怎样传给Friend?
在特殊方法里,不用self.friend=friend吗?
friend是不是不算新属性?
感觉基础不扎实这些变量稍微对不上,就看不懂了