Loop over multiple arrays simultaneously: Difference between revisions

(added J (though because J abstracts away arrays and looping, the solution is questionable))
Line 16:
=={{header|J}}==
(,.":"0)&:>/ 'abc' ; 'ABC' ; 1 2 3
 
=={{header|Python}}==
<lang python>>>> print ( '\n'.join(''.join(x) for x in zip('abc', 'ABC', '123')) )
aA1
bB2
cC3
>>> </lang>
 
=={{header|Ruby}}==
Anonymous user