¿Cuál es el resultado de la siguiente operación?
x = "Python es genial".replace("genial", "increíble") print(x)
"Python es increíble"
"Python es increíble genial"
"Python es genial increíble"
"Python es genial"