I think this might be very easy to do, but I don't know exactly how I can. Suppose that we have multiple arrays:
x = [1, 2, 3, 4, 5]
y = [1, 3, 5, 7 ,9]
z = [1, 5, 10, 15, 20]
Then, how can I get each element of each array using the for loop? What I'm trying to do is something like the following:
for (x1, x2, x3) in (x, y, z):
print (x1, x2, x3)
Of course, the above code block doesn't work. Could anyone tell me how I can do this?