__module__
__new__
__reduce__
__repr__
__reduce_ex__
__getattribute__
大家讲道理2017-04-17 17:39:23
隱藏屬性,或隱藏方法。
例如
>>> '33'.__hash__()
4038753864587545164
>>> '33'.__len__()==len('33')
True
>>> (3).__pow__(2)
9
>>> int.__pow__(3,2)
9