gpt4 book ai didi

python - 获取 "' 元组'对象的列表的变异元组不支持项目分配“

转载 作者:太空宇宙 更新时间:2023-11-03 12:24:20 25 4
gpt4 key购买 nike

<分区>

我正在尝试修改元组中的列表,append 方法有效,而 += 运算符仍然有效,但出现异常,提示无法修改元组.我知道元组是不可变的,但我并不想改变它。为什么会这样?

In [36]: t=([1,2],)

In [37]: t[0].append(123)

In [38]: t
Out[38]: ([1, 2, 123],)

In [39]: t[0]+=[4,5,]
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-39-b5b3001fbe03> in <module>()
----> 1 t[0]+=[4,5,]

TypeError: 'tuple' object does not support item assignment

In [40]: t
Out[40]: ([1, 2, 123, 4, 5],)

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com