Rosa, parte de este staff, nos hizo el favor de escribir este tutorial ya que conoce muy bien dicho tema.
Ejemplo 1: python usa funciones de otro archivo
#If you want to import all functions from file... but you will still need to#mention the file name:import pizza
pizza.pizza_function()#If you want to import every function but you dont want to mention file name:from pizza import*
pizza.pizza_function()
Ejemplo 2: cómo importar todas las funciones desde otro archivo python
from scripts import*
Ejemplo 3: Python incluye la función de otro archivo
from filename_without_py_extension import*
functionFromIncludedFile()
Ejemplo 4: cómo importar funciones desde otro archivo python
from file_name import function_name #do not include brackets or file types
valoraciones y reseñas
Si guardas alguna desconfianza o disposición de desarrollar nuestro crónica te proponemos añadir un paráfrasis y con placer lo interpretaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)