我正在尝试遍历下面的循环,但是得到了这个索引
error:IndexError: index 12 is out of bounds for axis 0 with size 12
了解变量的唯一重要的事情是元素的长度为12。
一旦达到12点,我已经尝试破坏代码,但是我仍然遇到相同的错误
for element in group1:
count = 0
while count < len(element):
if element.columns[count] == "No Experience(REM)" or "No Experience(NREM)":
element1 = Project().butterWorth(element)
element2 = Project().fourierTransform(element1)
class1group1.append(element2)
count = count + 1
我希望循环能够遍历元素中的每个值而不会出错