run 2 loops simultaneously python

Solutions on MaxInterview for run 2 loops simultaneously python by the best coders in the world

showing results for - "run 2 loops simultaneously python"
Alex
14 Jan 2019
1
2// LOOPING SIMULTANIOUSLY
3for (i,j) in zip(range(12,20),range(22,30)): 
4	print(i,j)