Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用 Python 2.7.4 在 Spyder 中开发的 python 脚本。这个脚本是从另一个 python 脚本调用的,使用:
execfile('script.py')
我想知道如何使用 PyPy 运行两个 python 脚本(我喜欢这个,因为它比标准 Python 快)。谢谢!
PS:我已经在 Windows 中安装了 PyPy。
pypy scriptname.py在命令行上运行第一个 Python 脚本。运行的代码execfile()也将在 PyPy 中运行,因为主脚本 ( execfile()) 正在 PyPy 中运行。
pypy scriptname.py
execfile()