๐Ÿ“ฆ WhaleChen / python_toolbox

๐Ÿ“„ subprocess_1.py ยท 6 lines
1
2
3
4
5
6# examples of subprocess module
from subprocess import call

# command line could be put in to a list
call(["ls", "-l"])