胜天半月子 2021-04-15 22:13 采纳率: 44.4%
浏览 270
已结题

Python中列表与列表中元组相加问题


>>> second_matrix = [(6, 9), (5, 8), (4, 7)] # 列表中是元组
>>> res =  [1, 2, 3]

# 情况一
>>> res += second_matrix.pop(0)
>>> res
[1, 2, 3, 6, 9]

# 情况二
>>> [1, 2, 3]+(6,9)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only concatenate list (not "tuple") to list

# 情况三
>>> second_matrix = [(6, 9), (5, 8), (4, 7)]
>>> [1, 2, 3]+second_matrix.pop(0)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only concatenate list (not "tuple") to list
>>>


>>> type(second_matrix)
<class 'list'>

情况一不是很理解,难道是因为second_matrix本质还是列表吗?所以列表可以进行运算如果情况一是因为列表,那么情况三也是列表相加减啊

 

求大神赐教!!!

  • 写回答

2条回答 默认 最新

  • 天元浪子 Python领域优质创作者 2021-04-16 08:20
    关注

    "+"不能用于列表和元组之间,无论谁先谁后。题主代码中的res += second_matrix.pop(0),并非res = res + second_matrix.pop(0),而是等效于:

     res.extend(second_matrix.pop(0))

    extend是列表的方法,接受可迭代对象作为参数,比如:

    >>> a = [1,2,3]
    >>> b = (4,5)
    >>> c = 'xyz'
    >>> a.extend(b)
    >>> a
    [1, 2, 3, 4, 5]
    >>> a.extend(c)
    >>> a
    [1, 2, 3, 4, 5, 'x', 'y', 'z']
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 电脑拓展屏桌面被莫名遮挡
  • ¥20 ensp,用局域网解决
  • ¥15 Python语言实验
  • ¥15 我每周要在投影仪优酷上自动连续播放112场电影,我每一周遥控操作一次投影仪,并使得电影永远不重复播放,请问怎样操作好呢?有那么多电影看吗?
  • ¥20 电脑重启停留在grub界面,引导出错需修复
  • ¥15 matlab透明图叠加
  • ¥50 基于stm32l4系列 使用blunrg-ms的ble gatt 创建 hid 服务失败
  • ¥150 计算DC/DC变换器平均模型中的参数mu
  • ¥25 C语言代码,大家帮帮我
  • ¥50 关于#html5#的问题:H5页面用户手机返回的时候跳转到指定页面例如(语言-javascript)