Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 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 '''