“sous-processus python” Réponses codées

sous-processus python

import subprocess

#WE USE SUBPROCESS LIBRARY IN PYTHON TO RUN SOME LINUX AND SHELL COMMANDS
#FOR EXAMPLE. 
#LET'S CREATE AN ECHO COMMAND USING PYTHON SUBPROCESS LIBRARY.
subprocess.run("echo Hello World", shell=True)

#OUTPUT:
#Hello World

#TO LIST FILES IN A CURRENT DIRECTORY 
subprocess.run("ls -la"), shell=True)

#OUTPUT: WILL LIST FILES IN THE CURRENT DIRECTORY.

#WITH SUBPROCESS THERE IS NO LIMIT ON HOW YOU INTERACT WITH THE SHELL USING PYTHON
#AS A GATEWAY.
Chinedu Francis Ozurumba

exception de sous-processus python

try:
    subprocess.check_output(...)
except subprocess.CalledProcessError as e:
    print(e.output)
Clumsy Cassowary

python écriture de sous-processus stdout stderr dans le fichier

with open("stdout.txt","wb") as out, open("stderr.txt","wb") as err:
    subprocess.Popen("ls",stdout=out,stderr=err)
Outrageous Octopus

sous-processus python

pip install subprocess
Chinedu Francis Ozurumba

Réponses similaires à “sous-processus python”

Questions similaires à “sous-processus python”

Plus de réponses similaires à “sous-processus python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code