Created
April 7, 2017 23:53
-
-
Save lucasp90/f3d193653d71b9e5f9f5ee90adaf5ca5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def capitalizar(cadena): | |
return cadena[0].upper() + cadena[1:] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment