Memory allocation(1) Reference counting 1 분 소요 Python은 C, C++과 같이 프로그래머가 직접 malloc(), calloc()과 같은 함수를 사용하여 메모리를 할당해주거나 해제해줄 필요가 없습니다. 파이썬은 reference counting과 garbage collection을 사용하여 자동으로 메모리 할당/해제를 처리...