how to loop through in tuple and print the last two items in python code example
Example: 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