How to call external command in Python

2 Answers

0 votes
from subprocess import call
call(["dir"])



'''
run:

test.py  
main.py

'''

 



answered Sep 25, 2019 by avibootz
0 votes
import subprocess

subprocess.run(["ls", "-l"])



'''
run:

-rw-r--r-- 1 runit runit 579 Sep 17 22:18 test.py
-rw-r--r-- 1 runit runit  82 Sep 25 08:50 main.py

'''

 



answered Sep 25, 2019 by avibootz

Related questions

...