I have two lists that i need to combine where the second list has any duplicates of the first list ignored. .. A bit hard to explain, so let me show an example of what the c
resulting_list = first_list + [i for i in second_list if i not in first_list]