Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python – 목록을 다른 목록 요소와 결합

<시간/>

목록을 다른 목록 요소와 결합해야 하는 경우 간단한 반복 및 '추가' 방법을 사용합니다.

아래는 동일한 데모입니다 -

예시

my_list_1 = [12, 14, 25, 36, 15]

print("The first list is :")
print(my_list_1)

my_list_2 = [23, 15, 47, 12, 25]

print("The second list is :")
print(my_list_2)

for element in my_list_2 :
   my_list_1.append(element)

print ("The result is :")
print(my_list_1)

출력

The first list is :
[12, 14, 25, 36, 15]
The second list is :
[23, 15, 47, 12, 25]
The result is :
[12, 14, 25, 36, 15, 23, 15, 47, 12, 25]

설명

  • 두 개의 목록이 정의되어 콘솔에 표시됩니다.

  • 두 번째 목록은 반복되고 두 번째 목록의 각 요소는 첫 번째 목록에 추가됩니다.

  • 콘솔에 표시되는 출력입니다.