Created
December 25, 2019 22:37
-
-
Save Fhernd/1322348707739415d58e8b4cdaea65aa to your computer and use it in GitHub Desktop.
# Ejercicio 421: Convertir una tupla en una cadena de caracteres.
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
# Ejercicio 421: Convertir una tupla en una cadena de caracteres. | |
letras = ('P', 'y', 't', 'h', 'o', 'n') | |
python = ''.join(letras) | |
print(type(python)) | |
print(python) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment