My lists looks like this (those numbers are UIDS):
sysusers = [['user1'],[7972],
['user2'],[2121],
['hacker'],[2132]
['hacker2'],[1232]]
users = [['user1'],[7972],
['user2'],[2121]]
I want to take the difference of those two lists and output it in a list similar to this:
badusers = [hacker,
hacker2]