Ejemplo 1: importar clase desde otro archivo python
from <file that has the class in> import <the class name you want to import>
# Or do this if you want to import everything inside one file
from <file that has the class in> import *
Ejemplo 2: como importar una clase de un archivo a otro python
from application.app.folder.file import func_name
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)