gpt4 book ai didi

Python-将列表转换为元组并比较(for循环)

转载 作者:行者123 更新时间:2023-12-01 05:29:22 29 4
gpt4 key购买 nike

def run(lst, tup):
tup_1 = ()
for x in range(len(lst)):
tup_1[x] = lst[x]

if tup_1[1] == lst[1]:
return True
for y in range(len(tup_1)):
if tup_1[y] == tup[y]:
return "matched"
else:
return "not equal"
print run([1,2,3],(1,2,3))

我尝试将列表中的数字转换为元组形式,这样我就可以与另一个元组进行比较。但问题是它返回这样的错误:

Traceback (most recent call last): File "", line 16, in File "", line 5, in run TypeError: 'tuple' object does not support item assignment

最佳答案

您可以使用这样的tuple函数将列表转换为元组

tuple(lst)

要检查列表和元组是否相同,您可以简单地执行此操作

return tuple(lst) == tup

关于Python-将列表转换为元组并比较(for循环),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20614424/

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