■ list 클래스에서 + 연산자를 사용해 정수 리스트에 문자열 리스트를 더하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
list1 = [1, 2, 3, 4] print(list1) list2 = ['I', 'tripped', 'over', 'and', 'hit', 'the', 'floor'] print(list2) list3 = list1 + list2 print(list3) """ [1, 2, 3, 4] ['I', 'tripped', 'over', 'and', 'hit', 'the', 'floor'] [1, 2, 3, 4, 'I', 'tripped', 'over', 'and', 'hit', 'the', 'floor'] """ |