Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 14, 2018 02:35
Show Gist options
  • Save Fhernd/58bddcf386cedc17e8a3d122fc745378 to your computer and use it in GitHub Desktop.
Save Fhernd/58bddcf386cedc17e8a3d122fc745378 to your computer and use it in GitHub Desktop.
Reemplazo de cadenas de caracteres en Python.
ciudad = 'Santa Fé de Bogotá'
nueva_ciudad = ciudad.replace('Santa Fé de ', '')
print(nueva_ciudad)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment