gpt4 book ai didi

python - 属性错误 : list object has no attribute 'apply'

转载 作者:行者123 更新时间:2023-12-05 03:55:56 24 4
gpt4 key购买 nike

time_weight = list(100*np.exp(np.linspace(-1/divisor, -(num_steps-1)/divisor, num_steps))).apply(lambda x:int(x))

当我尝试这样做时,我在 Python 3.7 中收到以下错误。

AttributeError: 'list' object has no attribute 'apply'

有人可以帮忙吗?

最佳答案

如错误所述,list 类型没有 apply 属性。这就是说,如果你有一个列表 l 并且你想设置为 int 键入其中的每个元素,你可以使用:

l = [int(x) for x in l]

l = list(map(int,l))

关于python - 属性错误 : list object has no attribute 'apply' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59839869/

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