Created
December 26, 2019 13:42
-
-
Save Fhernd/9a2b0b7ff2bc4f93a70d2ed07b60d67c to your computer and use it in GitHub Desktop.
# Ejercicio 430: Computar la longitud de un objeto tupla con la función len().
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 430: Computar la longitud de un objeto tupla con la función len(). | |
numeros = (2, 3, 5, 7, 11, 13, 17, 19) | |
print(numeros) | |
print(len(numeros)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment