我正在尝试从解释器中使用python命令执行文件。

编辑:我正在尝试使用该文件中的变量和设置,而不是调用一个单独的进程。

最佳答案

几种方法。

从 shell

python someFile.py

从IDLE内部,点击 F5

如果您是交互式输入,请尝试以下操作:(仅适用于Python 2 !)
>>> variables= {}
>>> execfile( "someFile.py", variables )
>>> print variables # globals from the someFile module

对于Python3 ,请使用:
>>> exec(open("filename.py").read())

08-19 21:04