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

Python - 다른 목록에 목록 삽입

<시간/>

목록은 또한 인수로 전달한 목록의 항목을 추가하는 확장() 메서드입니다. extend() - Python 목록 메서드 extend()는 seq의 내용을 목록에 추가합니다. 자세한 내용은 "https://www.tutorialspoint.com/python/list_append.htm"

에서 읽을 수 있습니다.

이제 실습을 살펴보겠습니다.

#append
first_list = [1,2,3,4,5]
second_list = [6,7,8,9,10]
first_list.append(second_list)
# print result using append
print("The list pattern using append is : " + str(first_list))
#extend
third_list_ = [11,12,13,14,15]
fourth_list = [16,17,18,19,20]
third_list_.extend(fourth_list)
print("The list pattern using extend is : " + str(third_list_))

출력

The list pattern using append is : [1, 2, 3, 4, 5, [6, 7, 8, 9, 10]]
The list pattern using extend is : [11, 12, 13, 14, 15, 16, 17, 18, 19, 20]