Created
December 26, 2019 17:18
-
-
Save Fhernd/26ec6b8458eb953ecd0806cf30e69879 to your computer and use it in GitHub Desktop.
# Ejercicio 435: Imprimir una tupla con el método de instancia format().
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 435: Imprimir una tupla con el método de instancia format(). | |
numeros = (2, 3, 5, 7) | |
print('El contenido de la tupla es: {}'.format(numeros)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment