python-邏輯運算子對應的函式

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

__eq__(self, other):用於 == 運算子
__ne__(self, other):用於 != 運算子
__lt__(self, other):用於 < 運算子
__le__(self, other):用於 <= 運算子
__gt__(self, other):用於 > 運算子
__ge__(self, other):用於 >= 運算子

相關文章