- Develop Tip
- 2013/11/26 11:48
다음과 같은 아주 간단한 클래스가 있습니다.class Parent(object): def __init__(self, val): self.val = val def __eq__(self, other): return self.val == other.valif __name__=='__main__': p1 = Parent(1) p2 = Parent(1) pr...
1
최근 덧글