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"])
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"])