본문 바로가기
Python

Python 두 개의 리스트 합치기

by jayden-lee 2019. 6. 7.
728x90
listA = [1,2,3,4,5]
listB = [6,7,8]

listC = listA + listB

print(listC)

댓글