Skip to content

Instantly share code, notes, and snippets.

@psicobyte
Last active August 8, 2017 10:03
Show Gist options
  • Save psicobyte/76babb0effb18ae5724e09cf4d967490 to your computer and use it in GitHub Desktop.
Save psicobyte/76babb0effb18ae5724e09cf4d967490 to your computer and use it in GitHub Desktop.
Ejemplo de llamada a módulos
#!/usr/bin/python3
# Ejemplo de llamada a un módulo
# Importamos el módulo usando su nombre sin la extensión
import mi_modulo
# Llamanos ala función con el nombre del módulo antepuesto y seprarado por un punto
mi_modulo.mi_funcion("hola")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment