Explica este código Python
Dificultad: Intermedio
def f(text, target_word, replace_word):
index_target_word = text.find(target_word)
x = text[0:index_target_word]
y = text[index_target_word + len(target_word):len(text)]
return f"{x}{replace_word}{y}"
print(f("Keep calm and write Python", "write", "enjoy"))
👉 A. Keep calm and write Python
👉 B. Keep calm and enjoy Python
👉 C. IndexError
👉 D. TypeError
👉 B. Usando
Respuesta:
Keep calm and enjoy Python
La función f
implementa un algoritmo para buscar y remplazar una palabra dada por otra sin el uso de la función replace
de Python. find()
y dividiendo la cadena podemos lograr lo que se pretende.
Top comments (0)