Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 기러기목
- 맑은소리 스피치학원
- 직박구리과
- 비둘기목
- AI전략게임
- 생일문제
- keras
- Birthday paradox
- 솔딱새과
- 비둘기과
- 계수정렬
- SimpleCraft
- python3
- 흰날개해오라기
- 한국의 새
- 한국의새
- ADsP
- 백로과
- 딥러닝공부
- 오리과
- 딱다구리과
- django
- Python
- 가마우지과
- 참새과
- structured_array
- 참새목
- IBK기업은행 인턴
- AI역량평가
- 딥러닝 공부
Archives
- Today
- Total
진박사의 일상
[Python] ''.join() 얼마나 빠를까? 본문
list to string에 사용되는 join 함수가 for-loop보다 얼마나 빠를까 테스트를 해보았다.
import time
import random
str_len = 100 #100자리 랜덤 문자열
str_pool = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
result = []
for_sum = 0.0
join_sum = 0.0
for i in range(str_len):
result.append(random.choice(str_pool))
for i in range(100):
for i in range(str_len):
result.append(random.choice(str_pool))
new_result = ""
start = time.time()
#for r in result:
# new_result += r
new_result =
for_sum += time.time() - start
start = time.time()
new_result = ''.join(result)
join_sum += time.time() - start
for_sum/=100
join_sum/=100
print("for-loop time :", for_sum)
print("''.join() time :", join_sum)
if for_sum > join_sum:
print( "''.join() is faster than for-loop by ",round((for_sum-join_sum)/for_sum*100,2), "%")
else:
print( "for-loop() is faster than ''.join() by ",round((join_sum-for_sum)/join_sum*100,2), "%")
결과적으로
for-loop time : 0.002113642692565918
''.join() time : 4.7826766967773436e-05
''.join() is faster than for-loop by 97.74 %
예상대로 무쟈게 빠르게 나왔다.
함수를 아는것과 모르는 것의 차이가 이렇게 크다.
'프로그래밍' 카테고리의 다른 글
[이코테] Dynamic Programming - 피보나치 (0) | 2021.09.09 |
---|---|
[Python] 계수 정렬과 기본 정렬 비교 (0) | 2021.09.09 |
[작품소개] SimpleCraft - Java (0) | 2021.06.30 |
메모 - sensor data는 sequential 이라도 lstm보다 1d-cnn? (0) | 2021.06.18 |
[Python3] numpy에서 dictionary처럼 쓸 수 있는 Structured Array (0) | 2021.06.05 |