Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created December 26, 2019 13:42
Show Gist options
  • Save Fhernd/9a2b0b7ff2bc4f93a70d2ed07b60d67c to your computer and use it in GitHub Desktop.
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().
# 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