“Python ejecutar archivo” Código de respuesta

Ejecute el archivo PY en otro archivo PY

os.system('python my_file.py')
Tremendous Enceladus

Python ejecutar archivo

import fileB #Replace fileB with the apportite file name
fileB.my_func() #Can replace 'my_fun' with a function from the second .py file
execfile('file.py') #Executes the .py file
Muddy Mamba

Ejecute el archivo Python usando el código Python

exec(open('file.py').read())
Blue Butterfly

Cómo ejecutar un archivo de Python desde otro archivo de Python

import  myfile

myfile.myfunction


#calls a specific function from within the file


Muddy Monkey

Respuestas similares a “Python ejecutar archivo”

Preguntas similares a “Python ejecutar archivo”

Más respuestas relacionadas con “Python ejecutar archivo” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código