Hapus kejadian karakter dari string python
>>> "it is icy".replace("i", "")
't s cy'
Dragonfly
>>> "it is icy".replace("i", "")
't s cy'