목록의 항목을 단일 문자열로 연결하는 방법
질문: 목록의 항목을 어떻게 결합할 수 있습니까? 개별 문자열을 하나의 연속 문자열로 변환하시겠습니까? 예를 들어 ['this', 'is', 'a', 'sentence'] 목록이 있는 경우 "this-is-a-sentence" 문자열을 어떻게 얻을 수 있나요?
답변: 목록의 문자열을 연결하려면 str.join 메서드를 사용하세요.
예:
words = ['this', 'is', 'a', 'sentence'] # Use '-' as the separator separator = '-' joined_string = separator.join(words) print(joined_string) # Output: this-is-a-sentence # Alternatively, use ' ' as the separator separator = ' ' joined_string = separator.join(words) print(joined_string) # Output: this is a sentence
str.join 메소드는 문자열을 인수로 사용하며, 이는 단일 문자열로 결합될 때 목록 항목 간의 구분 기호 역할을 합니다. 단어에 공백을 사용하거나 구성 요소에 대시를 사용하는 등 필요에 맞게 구분 기호를 사용자 정의할 수 있습니다.
위 내용은 문자열 목록을 단일 문자열로 결합하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!