Created
August 8, 2017 10:16
-
-
Save psicobyte/79d5d0c026115333da6a8019bf540d6b to your computer and use it in GitHub Desktop.
Ejemplo con alias
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
#!/usr/bin/python3 | |
# Ejemplo de llamada a un módulo | |
# Importamos el módulo y le asignamos un alias | |
import mi_modulo as mm | |
# Llamanos a la función con el alias | |
mm.mi_funcion("hola") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment