Created
December 26, 2019 14:37
-
-
Save Fhernd/19e69288411e710628fccfe077664ab6 to your computer and use it in GitHub Desktop.
# Ejercicio 432: Crear una lista de tuplas a partir de la función zip().
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 432: Crear una lista de tuplas a partir de la función zip(). | |
lista = [(1, 2), (3, 4), (5, 6), (7, 8)] | |
resultado = list(zip(*lista)) | |
print(resultado) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment