사용법리스트 형태의 문자열 결합하는 상황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빈 ..