Answers for "how to run a python script in cmd"

23

execute command in python script

import os

os.system("ma Commande")

#Exemple:

os.system("cd Documents")
Posted by: Guest on June-10-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
8

python how to run terminal command

#By Uku Loskit

import os
os.system("ls -l")
Posted by: Guest on January-09-2020
1

how to run cmd command python

import subprocess
subprocess.run(["ls", "-l"])
Posted by: Guest on June-02-2020
1

run python file from cmd

# If the .py file is on the desktop, to run the file:
cd Desktop
FileName.py
Posted by: Guest on August-14-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 run a python script in cmd"

Python Answers by Framework

Browse Popular Code Answers by Language