Python3.x:python: extend (扩展) 与 append (追加) 的区别
Posted 整合侠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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\']]
作者:整合侠
链接:http://www.cnblogs.com/lizm166/p/8232733.html
来源:博客园
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
以上是关于Python3.x:python: extend (扩展) 与 append (追加) 的区别的主要内容,如果未能解决你的问题,请参考以下文章