Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
str1 = "acdgjln" str2 = "bcefglmd" unique = list(set(str1).symmetric_difference(set(str2))) print(unique) ''' run: ['j', 'a', 'b', 'm', 'e', 'f', 'n'] '''