python基础之append和extend的区别

1.append

a = [1,2,3]
b=[1,2]
a.append(b)
-------------------------------------------------
a
Out[60]: [1, 2, 3, [1, 2]]

将b作为整个元素append进去。

2.extend

a = [1,2,3]
b=[1,2]
a.extend(b)
-----------------------------------------------
a
Out[66]: [1, 2, 3, 1, 2]

 将列表b中的元素分别append进去。

当内容为数值时,只能用append。

a = [1,2,3]
a.append(3)
--------------------------------------------
a
Out[77]: [1, 2, 3, 3]
--------------------------------------------
a.extend(3)
Traceback (most recent call last):
  File "C:\local\Anaconda3-4.1.1-Windows-x86_64\lib\site-packages\IPython\core\interactiveshell.py", line 2885, in run_code
    exec(code_obj, self.user_global_ns, self.user_ns)
  File "<ipython-input-78-0218884a1728>", line 1, in <module>
    a.extend(3)
TypeError: 'int' object is not iterable
-------------------------------------------
a.extend([3])
-------------------------------------------
a
Out[80]: [1, 2, 3, 3, 3]

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值