Contents:
内置的包:
第三方包:
__cmp__ : 比较大小 python3中已弃用 案例
__cmp__
__eq__ : == 案例
__eq__
==
__ne__ : !=
__ne__
!=
__lt__ : <
__lt__
<
__gt__ : >
__gt__
>
__le__ : <=
__le__
<=
__ge__ : >=
__ge__
>=
__add__ : +
__add__
+
__sub__ : -
__sub__
-
__mul__ : *
__mul__
*
__floordiv__ : // python2 和 python3 有所区别
__floordiv__
//
__truediv__ : /
__truediv__
/
__and__ : &
__and__
&
__xor__ : ^
__xor__
^
__or__ : |
__or__
|
__contains__ : in
__contains__
in