gpt4 book ai didi

python - 在 Python 中将列表转换为元组

转载 作者:太空宇宙 更新时间:2023-11-04 07:29:55 24 4
gpt4 key购买 nike

<分区>

>>> list=['a','b']
>>> tuple=tuple(list)
>>> list.append('a')
>>> print(tuple)
('a', 'b')
>>> another_tuple=tuple(list)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object is not callable

为什么我不能将列表“列表”转换为元组?

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