Python attraper la sortie du terminal

subprocess = subprocess.Popen("echo Hello World", shell=True, stdout=subprocess.PIPE)
Clean Cat