Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
str1 = "acdgjln" str2 = "bcefglmd" print(set(str1) ^ set(str2)) # letters in in str1 or str2 but not both ''' run: {'m', 'b', 'f', 'e', 'a', 'n', 'j'} '''