Answers for "python execute shell command with input output"

5

input command in python shell

x = input("Input Your Name")
#lets say I input Bob
print(x)
#It should output Bob
Posted by: Guest on April-22-2020
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

Code answers related to "python execute shell command with input output"

Python Answers by Framework

Browse Popular Code Answers by Language