Python3.x:python: extend (扩展) 与 append (追加) 的区别详解编程语言

Python3.x:python: extend (扩展) 与 append (追加) 的区别

1,区别:

 append() 方法向列表的尾部添加一个新的元素。只接受一个参数;

 extend()方法只接受一个列表作为参数,并将该参数的每个元素都添加到原有的列表中;

2,示例:

list_extend = ['a', 'b', 'c'] 
list_extend.extend(['d', 'e', 'f'])  
print("list_extend:%s" %list_extend) 
# 输出结果:list_extend:['a', 'b', 'c', 'd', 'e', 'f'] 
list_append = ['a', 'b', 'c'] 
list_append.append(['d', 'e', 'f'])  
print("list_append:%s" %list_append) 
# 输出结果:list_append:['a', 'b', 'c', ['d', 'e', 'f']]

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/16790.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论