If i have two empty lists and i want to populate them with all "a"s and "b"s in the same object, can i do sometihng like:
a, b = [foo.a, foo.b for foo in foo]
Because currently I have them separated into two separate list comprehensions.
a = [foo.a for foo in foo]
b = [foo.b for foo in foo]
And so I was wondering if I can somehow consolidate them into one line and argument.