사용법
- 리스트 형태의 문자열 결합하는 상황
words = ["Hello", "world", "from", "Python"]
sentence = " ".join(words)
print(sentence) # 출력: Hello world from Python
- 파일 경로 구성
path_parts = ["", "usr", "bin", "python3"]
file_path = "/".join(path_parts)
print(file_path) # 출력: /usr/bin/python3
- 쉼표(이외 특수 기호)로 구분된 문자열 생성
items = ["apple", "banana", "orange"]
csv_string = ", ".join(items)
print(csv_string) # 출력: apple, banana, orange
- 빈 문자열 결합
parts = ["Part1", "Part2", "Part3"]
result = "".join(parts)
print(result) # 출력: Part1Part2Part3
'개발 언어 > Python' 카테고리의 다른 글
깊은 복사(deep copy)와 얕은 복사(shallow copy) (0) | 2024.05.05 |
---|---|
immutable과 mutable 객체란? (0) | 2024.05.05 |
파이썬에서 2차원 리스트를 다뤄보자 (0) | 2024.04.05 |
람다식 정렬 (0) | 2024.04.05 |
set(집합) (0) | 2024.03.27 |