Python find elements in one list that are not in the other. You can use sets: main_list = list(set(list_2) - set(list_1)). Output: > ...
確定! 回上一頁