In the Code used, I have the values arr1 as 25,26 and arr2 values as A,B and the number of values are always equal in arr1 and arr2
For the following code:
for i in arr1.split(","):
print i //prints 25 and 26
If i want to map the values of arr1 & arr2, is it not possible to get the values of arr2 in the same loop ?