Difference of lists in Python [duplicate]
📁 список, вопрос, пример
There are three lists: list1, list2 and list3.
It is known that list1 > list2 (by number of elements), and list3 is empty.
It is also known that the first elements of list1 and list2 are the same (for example, list1 = [Vasya, Petya, Masha, Sasha], and list2 = [Vasya, Petya]).
Task: fill list3 with the difference of the first and second lists, i.e. in the given example list3 = [Masha, Sasha].