[Python] 리스트를 문자열로 변환하기(python list to string)
파이썬에 리스트를 문자열로 변환하여 출력을 해야 하는 경우가 있다. 예를 들면 ['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_stri..
2021. 8. 14.