“Python выполнить файл” Ответ

Запустите файл py в другом файле PY

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

Python выполнить файл

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

Запустите файл Python с помощью кода Python

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

Как выполнить файл Python из другого файла Python

import  myfile

myfile.myfunction


#calls a specific function from within the file


Muddy Monkey

Ответы похожие на “Python выполнить файл”

Вопросы похожие на “Python выполнить файл”

Больше похожих ответов на “Python выполнить файл” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования