gpt4 book ai didi

python - 类型错误 : Argument 2 must support iteration (even though it does? )

转载 作者:太空狗 更新时间:2023-10-30 02:28:27 24 4
gpt4 key购买 nike

我是 python 的新手,我遇到了一个对我来说没有意义的 map 函数错误。当我使用列表作为第二个参数调用该函数时,它返回错误“类型错误:参数 2 必须支持迭代”,这让我感到困惑,因为列表应该支持迭代。

import numpy as np
print(np.array(map(int, raw_input().split().reverse()), float))

该代码旨在接收一个列表,并打印出一个与列表相反的 numpy。对于为什么第二个参数不可迭代的任何帮助,我们将不胜感激。谢谢!

最佳答案

list.reverse() 函数就地反转列表并返回 None。如果你想把它写成一行,你可以写 reversed(raw_input().split()) 代替。

关于python - 类型错误 : Argument 2 must support iteration (even though it does? ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36939522/

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