如何在python中使用“removeIf”? 在java中,我可以使用:
list.removeIf(c -> c.num > 5);
但在python中如何做到这一点?如果我使用for循环:
for c in list: if (c.num > 5): list.remove(c)
它会变慢,所以我怎样才能在python中更快地做到这一点呢?