のような特定の長さのサブリストで構成されるリストがあり[["a","b","c","d"],["a","b","c","d"],["a","b","c","d","e"]]
ます。私がやりたいことは、特定の長さを持たないサブリストのインデックスを見つけて、そのインデックスを出力することです。たとえば、リストの例では、最後のサブリストの長さが 4 ではないため、list 2 does not have correct length
. これは私がこれまでに持っているものです:
for i in newlist:
if len(i) == 4:
print("okay")
elif len(i) != 4:
ind = i[0:] #this isnt finished; this prints out the lists with the not correct length, but not their indecies
print("not okay",ind)
前もって感謝します!