I was wondering if something akin to:
x,y = (1,2),'a'
would be possible in a for loop, like:
my_tuple = ((1,2),(2,3),(3,4))
your_tuple = ('a','b','c')
for x,y in my_tuple, your_tuple:
...
At the moment I can't even figure out how to do it with 3 variables.