I have the 2 lists with info:
test1 = [1,2,3,4]
test2 = ["a","b","c","d"]
I want to print it in the following order: The first item of the 1st array stays with the 1st item of the 2nd array, the 2nd of the 1st array stay with the 2nd of the 2nd array, and so on. I want to print it in this way:
[('a', 1), ('b', 2), ('c', 3), ('d', 4)]
How can I do this?