I have two lists:
listOne = ['John', 'James', Daniel', 'Peter', 'Luke']
listTwo = ['Daniel', 'Peter', Kate', 'Jenny']
I want to compare these two lists and return the non matches, and if need be, save this to another list, so the output should be:
Non-Matches: 'Kate', 'Jenny'
How can I achieve this? I looked at changing the lists to sets but have had no luck getting it working