os
Execute shell command given by string. The value returned is actually the exit code, not the output of the command to STDOUT.
os.system('ls -la')
os.popen('ls -la').read()
os.getcwd()
os.chdir(path)
os.path.isfile(file)
Execute shell command given by string. The value returned is actually the exit code, not the output of the command to STDOUT.
os.system('ls -la')
os.popen('ls -la').read()
os.getcwd()
os.chdir(path)
os.path.isfile(file)