gpt4 book ai didi

python - 在python循环中迭代float变量时出错

转载 作者:行者123 更新时间:2023-12-03 08:40:35 25 4
gpt4 key购买 nike

我使用score将变量设置为 float 列表marks,但由于Code

for score in range(marks):

错误为:
'float' object cannot be interpreted as an integer

最佳答案

自己遍历您的花车

for score in marks:
# score is a float now

或使用他们的索引
for i in range(len(marks)):
# do something with marks[i]
score = marks[i]

或者如果您同时需要索引和值
for i, score in enumerate(marks):
# i is the index, score is the float

关于python - 在python循环中迭代float变量时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61889491/

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