supprimer l'occurrence du caractère de String Python

>>> "it is icy".replace("i", "")
't s cy'
Dragonfly