python-算數運算子對應的函式

天子骄龙發表於2024-09-18

__add__(self, other): 用於 + 運算子
__sub__(self, other): 用於 - 運算子
__mul__(self, other): 用於 * 運算子
__truediv__(self, other): 用於 / 運算子
__floordiv__(self, other):用於 // 運算子
__mod__(self, other): 用於 % 運算子
__pow__(self, other): 用於 ** 運算子

相關文章