python get console output code example

Example 1: How can I get terminal output in python

>>> import subprocess
>>> cmd = [ 'echo', 'arg1', 'arg2' ]
>>> output = subprocess.Popen( cmd, stdout=subprocess.PIPE ).communicate()[0]
>>> print output
arg1 arg2

>>> 

There is a bug in using of the subprocess.PIPE. For the huge output use this:

import subprocess
import tempfile

with tempfile.TemporaryFile() as tempf:
    proc = subprocess.Popen(['echo', 'a', 'b'], stdout=tempf)
    proc.wait()
    tempf.seek(0)
    print tempf.read()

Example 2: how to print to console python

print(value)

print("Hello, World!") # String
print(3) # Number
print(True) # Boolean

# Can also print a variable.

Example 3: python get output

>out = subprocess.Popen(['wc', '-l', 'my_text_file.txt'], 
           stdout=subprocess.PIPE, 
           stderr=subprocess.STDOUT)

Example 4: print stuff in console python

print("ENTER STUF YOU WANNA PUT INTO CONSOLE HERE")

Example 5: what is the correct way to output a string to the console in python

time = datetime.now() #2014-07-08 13:08:09

print "%02d:%02d:%02d" % (time.hour, time.minute, time.second)