What is the Pythonic approach to achieve the following?
# Original lists: list_a = [1, 2, 3, 4] list_b = [5, 6, 7, 8] # List of tuples from \'list_a\' and
I am not sure if this a pythonic way or not but this seems simple if both lists have the same number of elements :
list_a = [1, 2, 3, 4] list_b = [5, 6, 7, 8] list_c=[(list_a[i],list_b[i]) for i in range(0,len(list_a))]