Remova a ocorrência de caráter do String Python
>>> "it is icy".replace("i", "")
't s cy'
Dragonfly
>>> "it is icy".replace("i", "")
't s cy'