Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Adding sugar to @Snusmumrick97's variant
for z in zip(m, n):
print(*z)
If you do not want to deal with elementary slices.
## len(Array1) = m
## len(Array2) = n
for i in range(len(Array1)):
print(Array1[i],Array2[i])
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question