J'utilise ce code pour obtenir la sortie standard d'un programme externe: >>> from subprocess import * >>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0] La méthode communic () renvoie un tableau d'octets: >>> command_stdout b'total 0\n-rw-rw-r-- 1...