2017-03-06 27 views

回答

0

在Python可以运行外壳命令是这样的:

from subprocess import call 
call(["ls", "-l"]) 
相关问题