데이터의 가능성/매일코딩

문자 리스트를 문자열로 변환하기(join)

gamnyam 2024. 6. 14. 15:35

 

def solution(arr):
    answer = ''.join(arr)
    return answer