아나콘다 데이터 분석 프레임워크 설치하고, 주피터 노트북에서 필요한 라이브러리 다운로드하고(맥이랑 윈도 둘 다) 오늘 배운 내용을 정리해보려고 합니다. 지금 시간은 2024-02-17 class Rectangle: count = 0 #클래스변수 def __init__(self, width, height): self.width = width self.__width = width self.height = height Rectangle.count += 1 #instance method, 주로 쓰는 메서드 def calcArea(self): area = self.width * self.height return area def calcArea02(self): area = self.__width * self.hei..