__add__(self, other): 用于 + 操作符
__sub__(self, other): 用于 - 操作符
__mul__(self, other): 用于 * 操作符
__truediv__(self, other): 用于 / 操作符
__floordiv__(self, other):用于 // 操作符
__mod__(self, other): 用于 % 操作符
__pow__(self, other): 用于 ** 操作符