프로그래밍/Python
[python] __메소드__ 정리
_Neo_
2022. 1. 17. 11:28
반응형
__add__ __mul__ |
__contains__ | __len__ | __getitem__ | __setitem__ | __delitem__ | __iter | |
str(문자열) | O | O | O | O | O | ||
list | O | O | O | O | O | O | O |
tuple | O | O | O | O | O | ||
set | O | O | O | ||||
dict | O | O | O | O | O | O |
int클래스
__add__(self,other) | __sub__(self,other) | __mul__(self,other) | __truediv__(self,other) | __floordiv__(self,other) |
__mod__(self,other) | __pow__(self,other) | __gt__(self,other) | __ge__(self,other) | __it__(self,other) |
__le__(self,other) | __eq__(self,other) | _ne__(self,other) |
반응형