[윤성우의 열혈 파이썬 중급편] 29. __slots __의 효과
출처 : 윤성우의 열혈 파이썬 : 중급 29. __slots __의 효과 __dict __의 단점과 그 해결책 # point_3d.py class Point3D: def __init__(sefl, x, y, z): self.x = x self.y = y self.z = z def __str__(self): return '({0}, {1}, {2})'.format(self.x, self.y, self.z) def main(): p1 = Point3D(1, 1, 1) p2 = Point3d(24, 17, 31) print(p1) print(p2) main() # point_slots.py class Point3D: __slots__ = ('x', 'y', '..
더보기