[파이썬 개념] 리스트를 문자열로 합치기 - ''.join(list)

timtam·2022년 2월 3일
0

Python_개념

목록 보기
4/32
>>> l = ['d', 'a', 't', 'a'] 
>>> print(''.join(l)) #data
data
>>> print('_'.join(l)) #d_a_t_a
d_a_t_a

출처 https://wikidocs.net/15559

0개의 댓글