This seems pretty simple, but I haven't found a way to do it. I have three lists, a, b, and c. I want to iterate over all of them as if their elements altogether form one big list. I can think of a few ways to do this, but nothing very smooth or "pythonic". I expected the splat operator to work:
for e in (*a, *b, *c):
# do stuff with e
but that gives a syntax error. Any ideas?