list.extend(sequence) 把一个序列seq的内容添加到列表中
>>> test1_list = ["a", "b", "c"]
>>> test2_list = ["d", "e", "f"]
>>> test1_list
['a', 'b', 'c']
>>> test1_list.append(test2_list)
>>> test1_list
['a', 'b', 'c', ['d', 'e', 'f']]
【解释1】
test1_list.append(test2_list):test2_list指向的对象被当做一个元素,加入到test1_list列表中。
>>> test1_list.extend(test2_list)
>>> test1_list
['a', 'b', 'c', ['d', 'e', 'f'], 'd', 'e', 'f']
>>>
【解释2】