考虑一下:
>>> import math
>>> dir(math)
['__doc__', '__name__', '__package__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'exp', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'hypot', 'isinf', 'isnan', 'ldexp', 'log', 'log10', 'log1p', 'modf', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']
__dict__
未列出,但我仍然可以
>>> math.__dict__
同样的事情
>>> class MyClass(object):
def __init__(self, var1, var2):
self.a = var1
self.b = var2
def __call__(self, arg):
print " The arg passed is ", arg
>>> dir(MyClass)
['__call__', '__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__']
__bases__
并__base__
没有列出,但我仍然可以这样做:
>>> MyClass.__bases__
(<type 'object'>,)
>>> MyClass.__base__
<type 'object'>
问题:
我怎样才能知道或提前知道从 python 对象可以访问的所有属性?在这种情况下,我如何判断该math
模块 has__dict__
和MyClass
has __base__
and __bases__
?