Created
August 7, 2018 10:13
-
-
Save ramarivera/fe1a39cea436ec11bf5951d730f1dde4 to your computer and use it in GitHub Desktop.
Web scraping 01, python 05
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
# Listas | |
letras = ['A', 'B', 'C', 'd', 'f'] | |
# Tuplas | |
datos_persona = ('Ramiro', 25, False) | |
# Diccionarios | |
persona = { | |
'Nombre': 'Ramiro', | |
'Edad': 25 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment