我想知道是否有一种简单的方法可以找到列表中所有为空的索引。
mylist = [ [1,2,3,4], [] , [1,2,3,4] , [] ]
next((i for i, j in enumerate(mylist) if not j),"no empty indexes found")
将返回列表的第一个空索引,但我可以返回所有这些吗?"no empty indexes found"
如果没有空索引,它将默认为字符串。
我想将所有空索引附加到另一个列表中使用。
my_indexes_list.append(next((i for i, j in enumerate(self.list_of_colors) if not j),5))