magic method
-
파이썬 매직 메서드 호출방법카테고리 없음 2021. 10. 2. 11:41
Some of the magic methods in Python directly map to built-in functions; in this case, how to invoke them is fairly obvious. However, in other cases, the invocation is far less obvious. This appendix is devoted to exposing non-obvious syntax that leads to magic methods getting called. Magic Method When it gets invoked(example) Explanation __new__(cls [,...]) instance = MyClass(arg1, arg2) __new__..