Commande Unix dans le script Python

from subprocess import call
call('echo "I like potatos"', shell=True)
call('pwd', shell=True)
AMi