i know this code is right
class A:
def __init__(self):
self.a = 'a'
def method(self):
print "method print"
a = A()
print getattr(a, 'a', 'default')
print getattr(a, 'b', 'default')
print getattr(a, 'method', 'default')
getattr(a, 'method', 'default')()
but the next is wrong,
dose __getattr__ will affect the getattr
class a(object):
def __getattr__(self,name):
return 'xxx'
print getattr(a)
the next is also wrong
a={'aa':'aaaa'}
print getattr(a,'aa')
so,i want to know which place use this two function(__getattr__ and getattr)
Please try to use the code, rather than text, because my English is not very good, thank you