🌱 → 🌳

[Python] list를 문자열로 ''.join(리스트) 본문

Server/Python

[Python] list를 문자열로 ''.join(리스트)

BAY 2023. 5. 18. 10:43
728x90

📌 ''.join(리스트)

print(list) # ["1", "2", "3"]
print(''.join(list)) # 123

 

728x90

'Server > Python' 카테고리의 다른 글

python reduce 함수  (0) 2023.08.13
[Python] 조건문 기초  (0) 2022.05.23
[Python] 기초 자료형  (0) 2022.05.23
모각코 파이썬 크롤링 15일차  (0) 2022.04.08
모각코 파이썬 크롤링 14일차  (0) 2022.04.08