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