list_1 = [['good',100, 20, 0.2],['bad', 10, 0, 0.0],['change', 1, 2, 2]]list_1 = [item for item in list_1 if item[2] >= 5 or item[3] >= 0.3]
您也可以根据需要使用
if not (item[2] < 5 and item[3] < 0.3)该条件。

list_1 = [['good',100, 20, 0.2],['bad', 10, 0, 0.0],['change', 1, 2, 2]]list_1 = [item for item in list_1 if item[2] >= 5 or item[3] >= 0.3]
您也可以根据需要使用
if not (item[2] < 5 and item[3] < 0.3)该条件。