python reference two lists in one for loop code example
Example 1: list comp loop through list certain amount of times
data_subset = [car_data[i] for i in range(1000)]
#List comp, that loops through a certain list (car_data)
#in range of a 1000 times
Example 2: looping through two lists python
for f, b in zip(foo, bar):
print(f, b)