texto = "Olá, Mundo!" novo_texto = texto.replace("Olá", "Oi") print(novo_texto) # Saída: "Oi, Mundo!" print(texto) # Saída: "Olá, Mundo!"