Poena adlı üyeden alıntı: mesajı görüntüle
strVlaue: str = """
n the gardening world, you\'re likely wondering how to get\e joys of diggin """

print(strVlaue.replace("\\", " ").strip())
Çıktı

n the gardening world, you're likely wondering how to get e joys of diggin
arlife adlı üyeden alıntı: mesajı görüntüle
with open("gecicidosya.txt", "r", encoding="utf-8") as f:
data = f.read()

data = data.replace("\", "")
with open("gecicidosya.txt", "w") as f:
f.write(data)
sorun jupyter notebook kaynaklı, cmd ile çalıştırınca sorun çıkmadı