Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 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'} '''