我的程序目前包含 2 个 .py 文件。
我在 pypy 中运行代码的主要部分(这要快得多),然后在 python 中打开第二个文件,该文件使用matplotlib.pyplot
.
我已经设法打开使用:
subprocess.Popen(['C:\\python26\\python.exe ','main_plot.py',])
打开我的第二个文件...
import matplotlib.pyplot as pyplot
def plot_function(NUMBER):
'''some code that uses the argument NUMBER'''
pyplot.figure()
---plot some data---
pyplot.show()
但是,我希望能够将参数传递给plot_function
在 python 中打开的。那可能吗?