Remover as letras ABC

Published by danielkatz in

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.

Exemplos

remove_abc("This might be a bit hard") ➞ "This might e  it hrd"

remove_abc("hello world!") ➞ None

remove_abc("") ➞ None

Observações

Se a string fornecida não contiver "a", "b" nem "c", retorne None.