I have two lists:
one = ['a','b','c','d']
two = ['d', 'c',' b', 'a']
I would like to create a loop that produces the following output:
[('a', d'), ('b', 'c'), ('c','b'), ('d', 'a')]
This is my current code but it is not properly adding the parentheses.
final_list = []
for i in range(len(a)):
final_list.append(a[i])
final_list.append(b[i])