Python os.system(' python')仅适用于shell

时间:2017-06-26 16:41:08

标签: python shell cmd

我想使用os.system('python')访问python shell的cmd版本 但是,这只能从python shell中运行,而不能从程序中运行。如果我想使用从程序运行的os.system('cmd'),这尤其令人困惑。我在做什么,以至于无法通过程序中的命令打开python shell?为什么它适用于cmd?

1 个答案:

答案 0 :(得分:0)

我想你有一个python脚本,并且你希望能够在脚本执行期间的某个时刻打开一个交互式python shell。如果那就是你想要的,那么这应该有效:

import code

# do some stuff
# open interactive python shell using the code library
code.interact(local=locals())