Is there any way in Python to return multiple lists from a comprehension?
I want to do something to the effect of:
x,y = [i,(-1*j) for (i,j) in enumerate(range(10))]
# x = [0 .. 9]
# y = [0 .. -9]
that's a dumb example, but I'm just wondering if it's possible.