Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 13, 2019 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d2f65f072f9fb56b9a218bdeb9d5140f to your computer and use it in GitHub Desktop.
Save parzibyte/d2f65f072f9fb56b9a218bdeb9d5140f to your computer and use it in GitHub Desktop.
texto = "hola mundo se supone que esto se va a capitalizar"
print("El texto es: ", texto)
# Ahora lo capitalizamos
texto = texto.title()
print("El texto capitalizado es: ", texto)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment