Exécutez 2 boucles simultanément Python


// LOOPING SIMULTANIOUSLY
for (i,j) in zip(range(12,20),range(22,30)): 
	print(i,j)
Nutty Nightingale