1.import filename
# from filename import *
# from filename import function
filename.function()
2.os.system("python3 filename.py")
# fork子进程。返回退出码0成功,1失败。
3.os.popen("python3 filename.py")
# fork子进程。使用管道,返回文件。
4.subprocess.call('python3 filename.py',shell=True)
# fork子进程。返回退出码0成功,1失败。
# 替代os.system("cmd"),os.spawn*("cmd"), commands.getstatusoutput("cmd")
5.subprocess.run('python3 filename.py',shell=True)
# fork子进程。返回 CompletedProcess 对象。
# success: CompletedProcess(args=['dir', '/b'], returncode=0, stdout='test.py\n', stderr='')
# error: CompletedProcess(args='exit 1', returncode=1, stdout='', stderr='')
# 替代os.system("cmd"),os.spawn*("cmd"), commands.getstatusoutput("cmd")
6.subprocess.Popen('python3 hi.py',shell=True)
# fork子进程。使用管道,返回文件。替代os.popen("cmd")
## subprocess的方法都是父进程等待子进程完成后返回结果。
7.execfile('filename.py')
# python2
8.exec('command')
# command是具体python语句