Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
s1 = set(["php", "python", "java"]) s2 = set(["python", "c++"]) print(s1.difference(s2)) print(s2.difference(s1)) ''' run: {'php', 'java'} {'c++'} '''