본문 바로가기
파이썬

파이썬 목록의 항목을 단일 문자열로 연결하는 방법은 무엇입니까?

by º기록 2021. 2. 5.
반응형

목록의 문자열 항목을 단일 문자열로 연결하는 더 간단한 방법이 있습니까? str.join () 함수를 사용할 수 있습니까?

예 : 이것은 입력 [ 'this', 'is', 'a', 'sentence'] 이고 이것은 원하는 출력입니다. this-is-a-sentence

sentence = ['this','is','a','sentence']
sent_str = ""
for i in sentence:
    sent_str += str(i) + "-"
sent_str = sent_str[:-1]
print sent_str

 

해결 방법

 


>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'

 

참조 페이지 https://stackoverflow.com/questions/12453580

 

 

반응형

댓글