파이썬 리스트를 문자열로 변경하기
리스트 문을 문자어로 변경할 때 자주 사용하는 함수 join 정리 'separator'.join(iterable) separator: 각 요소 사이에 삽입될 문자열입니다. 일반적으로 빈 문자열, 공백, 쉼표, 하이픈 등이 사용iterable: 문자열로 결합하고자 하는 문자열들의 iterable 객체입니다. 리스트, 튜플, 문자열 등이 사 #공백을 활용한 코딩words = ['Python', 'is', 'fun']sentence = ' '.join(words)print(sentence)#출력 : Python is fun #쉼표를 활용 코딩fruits = ['apple', 'banana', 'cherry']result = ', '.join(fruits)print(result)#결과 apple, ba..
2024. 8. 14.