Home [Python] 문자열 붙이기 성능 비교 (join, +)
Post
Cancel

[Python] 문자열 붙이기 성능 비교 (join, +)

가독성, 성능을 위해 문자열 붙일때는 +보다 join을 사용

1
2
3
4
5
# 문자열 이 별변이므로 각 연결에 대해 새로운 메모리를 할당
full_name = first_name + " " + last_name

# 결합된 문자열에 메모리를 한번에 할당, 성능과 가독성 향상
" ".join([first_name, last_name])
This post is licensed under CC BY 4.0 by the author.

[Python] 파이썬 네이밍

BentoML