Using list comprehension I can easily do the following:
l = [0, 1, 2]
for i in l:
subl = [j for j in l if j != i]
Is there a non-list comprehension way to do this by manipulating indices with the %
operator?
Edit
To clarify: the indices match the list elements
Here's a solution that doesn't use list comprehension:
Output