반응형 [python3.10 기본] 25. 성능 최적화 25.1 프로파일링 (cProfile, timeit 모듈)프로파일링은 프로그램의 성능 병목 지점을 식별하는 데 사용됩니다. 파이썬에서는 cProfile과 timeit 모듈을 사용하여 프로파일링을 수행할 수 있습니다.cProfile 모듈기본 사용법import cProfiledef slow_function(): total = 0 for i in range(1, 10000): for j in range(1, 100): total += i * j return totalcProfile.run('slow_function()')프로파일링 결과 저장import cProfiledef slow_function(): total = 0 for i in range(1,.. 2024. 7. 2. 이전 1 다음 반응형