Skip to content

Instantly share code, notes, and snippets.

@ramarivera
Created August 7, 2018 10:15
Show Gist options
  • Save ramarivera/cb48eae30d6ac1cd11c2462c4c9e41e0 to your computer and use it in GitHub Desktop.
Save ramarivera/cb48eae30d6ac1cd11c2462c4c9e41e0 to your computer and use it in GitHub Desktop.
Web scraping 01, python 06
def sumar(a, b):
return a + b
def saludar(nombre):
print 'Hola ' + nombre + '!'
def cinco():
return 5
resultado = sumar(5, 6) # 11
saludar('Ramiro') # Se imprimira en consola 'Hola Ramiro!'
c = cinco() # 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment