码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2018-01-08 01:02:56      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   bsp   int   示例   pre   http   end   博客   com   

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 (追加) 的区别

标签:style   bsp   int   示例   pre   http   end   博客   com   

原文地址:https://www.cnblogs.com/lizm166/p/8232733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!