Answers for "runn command line command from python"

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

how to run cmd command python

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

get python to run cli commands

import os
sequence = (
	"git init",
  	"git add ."
)

for i, x in enumerate(sequence):
  print("{}. RUNNING: [{}]".format(i, x))
  os.system(x)
  
#short explanation
"""
	1) Init sequence
    2) Loop through sequence and use `os.system()` to run commands
"""
Posted by: Guest on February-19-2021

Code answers related to "runn command line command from python"

Python Answers by Framework

Browse Popular Code Answers by Language