Skip to content

Instantly share code, notes, and snippets.

@ramarivera
Created August 7, 2018 10:13
Show Gist options
  • Save ramarivera/fe1a39cea436ec11bf5951d730f1dde4 to your computer and use it in GitHub Desktop.
Save ramarivera/fe1a39cea436ec11bf5951d730f1dde4 to your computer and use it in GitHub Desktop.
Web scraping 01, python 05
# 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