I have two lists lst and count I need enumerate on lst and check if lst elements exists in count or not if not then append it in another list else pass.
for i, u in enumerate(lst ):
if u in count:
pass
else:
_ = sku[i].pop("_id")
objects.append(sku[i])
I need this code to be in one line