Answers for "how to execute a python file"

12

run python file using python code

exec(open('file.py').read())
Posted by: Guest on May-24-2020
1

python execute file

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
Posted by: Guest on February-03-2021
0

How to run a File using python

import subprocess  #imports the module thats needed
subprocess.call([r'C:UsersRonDesktopTestcurrent_date.bat'])  #runs the file in the given directory
Posted by: Guest on November-05-2021
-2

how to execute a python script

C:Python27python.exe C:UsersUsernameDesktopmy_python_script.py
Posted by: Guest on January-29-2021

Code answers related to "how to execute a python file"

Python Answers by Framework

Browse Popular Code Answers by Language