What is the process to run sub-process with pipes that connect both input and output?
Answer Posted / siva kumar reddy dandu
try to use subprocess module
x = subprocess.popen(command)
x.read()
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is split used for?
What is the difference between ‘match’ and ‘search’ in python?
How do you avoid cyclic imports without resorting to imports in functions?
What is a dictionary in python?
Does python interact with database?
Do you know what the difference between lists and tuples is? Can you give
Can we use singleton functionality without making a singleton class in Python?
How do you break in python?
What is the most "pythonic" way to iterate over a list in chunks?
Write a program in python to check if a number is prime.
Explain identity operators in python?
How do you get the last value in a list or a tuple?
What is static in python?
Explain the interpretation in python?
How will you remove all leading and trailing whitespace in string in python?