I have two lists as below and I am trying to figure out which index one list's items would be if they were in the other list (a little difficult to explain without an example).
list_1 = [35, 101, 128]
list_2 = [5, 27, 53, 73, 93, 120, 147]
So what I am trying to do is to take list_1's values and say, for example, that the value 35 would have been the 3rd value in list_2 (index = 2) and that 101 would be the 6th value (index = 5) in list_2, etc. Seems like there should be an easier way to do it than what I am currently thinking.