반응형
파이썬에 리스트를 문자열로 변환하여 출력을 해야 하는 경우가 있다.
예를 들면
['apple', 'banana', 'melon'] 으로 된 리스트를
apple, banana, melon 으로 된 string 형태로 출력하고 싶다면 아래와 같이 하면 된다.
list = ['apple', 'banana', 'melon']
list_to_string = ", ".join(list)
print(list_to_string)
>> apple, banana, melon
만약 apple-banana-melon 의 형식으로 출력을 하고 싶다면 아래와 같이 하면 된다.
list = ['apple', 'banana', 'melon']
list_to_string = "-".join(list)
print(list_to_string)
>> apple-banana-melon
반응형
'Python' 카테고리의 다른 글
python jinja2 template 변수 선언하기 (0) | 2021.09.16 |
---|---|
[Pandas] 파일 read할 때 Error tokenizing data 에러 해결법 (0) | 2021.08.20 |
[Python] 파이썬으로 순열, 조합, 중복 순열 생성하기(itertools library) (0) | 2021.08.11 |
[Python] 'cp949' codec can't decode byte 0xec : illegal multibyte sequence (UnicodeDecodeError) (0) | 2021.08.03 |
Python에서 Java 코드 사용하기(feat. jpype) (0) | 2021.07.31 |
댓글