Crie uma função que remova as letras "a", "b" e "c" da string fornecida e retorne a versão modificada. Se a string fornecida não contiver "a", "b" nem "c", retorne None.
remove_abc("This might be a bit hard") ➞ "This might e it hrd"
remove_abc("hello world!") ➞ None
remove_abc("") ➞ NoneSe a string fornecida não contiver "a", "b" nem "c", retorne None.