Contact: aviboots(AT)netvision.net.il
41,652 questions
54,315 answers
573 users
def remove_common_letters(word1, word2): return ''.join([char for char in word1 if char not in word2]) word1 = "forest" word2 = "tor" result = remove_common_letters(word1, word2) print(result) ''' run: fes '''