S
ssecorp
Is there a syntax for looping through 2 iterables at the same time?
for x in y:
for a in b:
is not what I want.
I want:
for x in y and for a in b:
for x in y:
for a in b:
is not what I want.
I want:
for x in y and for a in b: