1
piglei Feb 20, 2014
一般来说,subprocess可以满足你的需求:
# -*- coding: utf-8 -*- import subprocess subprocess.call('python another.py', shell=True) |
2
ritksm Feb 20, 2014
|
3
ljcarsenal Feb 20, 2014
import os
os.system('命令') |
4
PotatoBrother Feb 20, 2014
os库可以满足你
|