Python魔术方法
Python 魔术方法指南 — PyCoder’s Weelky CN
Python的魔术方法是Python中那些定义的像xxxx的方法,Python中主要的魔术方法如下
__str__(self)
__repr__
__getattr__
__setattr__
__delattr__
__getattribute__
__getitem__
__setitem__
__delitem__
__iter__
__contains__
__concat__
__pos__
__neg__
__index__
__invert__
__nonzero__
__call__
__init__
__new__
__enter__
__exit__
__lt__
__gt__
__eq__
__ne__
__cmp__
网友评论