xxxxxxxxxx
import os
# Get current working directory
wd = os.getcwd()
# List of directories in current working directory
os.listdir(wd)
xxxxxxxxxx
import subprocess
subprocess.call("command1")
subprocess.call(["command1", "arg1", "arg2"])
xxxxxxxxxx
python [-bBdEiOQsRStuUvVWxX3?] [-c command | -m module-name | script | - ] [args]