gpt4 book ai didi

python - 类型错误 : 'float' object is not iterable

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

<分区>

我正在编写一个程序来计算列表 (data1) 中 10 个数字的最小值和最大值。我收到以下行的“TypeError:‘float’对象不可迭代”:

temp_min10=min(data1[x-z][3])
temp_max10=max(data1[x-z][2])

完整程序:

x=int(0)
for line in data1:
if x>=9:
min10=0
max10=0
for z in range(0,10):
temp_min10 = temp_max10 = 0
temp_min10=min(data1[x-z][3])
if temp_min10<min10:
min10=temp_min10
temp_max10=max(data1[x-z][2])
if temp_max10>max10:
max10=temp_max10
d_chan.append([max10,min10])
else:
d_chan.append([0,0])
x+=1

感谢您的帮助!

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