Coding/Python

[python] join 함수

dodomp0114 2021. 11. 24. 22:45
join 함수

- 리스트를 문자열로 합쳐주는 함수입니다.

  

  리스트 안의 객체들을 문자열로 합쳐줄 때 객체 사이사이를 어떤 것으로 채워 넣을지 정해주는 형식.

  

 

 

기본 구조

"구분자".join(list)

 

 

 

ex )

#########################################################
### join 함수 사용하여 리스트 안의 객체들 문자열로 합치기 ###
#########################################################

>>> A = ['Hello', 'welcome', 'to', 'my', 'blog']
>>> >>> "_".join(A)
'Hello_welcome_to_my_blog'

## 기존 A 변수 안 리스트에는 변화 없음 ##