I have two lists of different lengths.
list_a = [32.959723, 32.969722999999995, 32.97972299999999, 32.98972299999999, 32.99972299999999, 33.00972299999999, 33.019722999999985, 33.02972299999998]
list_b = [35.808097, 35.818096999999995, 35.82809699999999, 35.83809699999999, 35.84809699999999, 35.85809699999999]
I want to create a function that compares the lengths of the two lists and remove the excess values from the bigger list.
I'm guessing it's something like
if len(list_a) != len(list_b):
#code to match them.