Python
Python 두 개의 리스트 합치기
jayden-lee
2019. 6. 7. 16:50
728x90
listA = [1,2,3,4,5]
listB = [6,7,8]
listC = listA + listB
print(listC)