Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python - แทรกรายการในรายการอื่น


รายการยังเป็นเมธอด expand() ซึ่งผนวกรายการจากรายการที่คุณส่งผ่านเป็นอาร์กิวเมนต์ extend() - Python list method expand() ต่อท้ายเนื้อหาของ 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]