Answers for "how to get output from python"

2

python execute shell command and get output

import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
Posted by: Guest on March-07-2020
0

python get output

>out = subprocess.Popen(['wc', '-l', 'my_text_file.txt'], 
           stdout=subprocess.PIPE, 
           stderr=subprocess.STDOUT)
Posted by: Guest on December-12-2020
-1

output something in python

print("Hello World!")

>>> Hello World!
Posted by: Guest on November-20-2020

Code answers related to "how to get output from python"

Python Answers by Framework

Browse Popular Code Answers by Language