我有一个 Groovy 脚本,它为我提供了一个输出文件,我将其用作 Python 脚本的输入文件。我想从 python 中运行 Groovy 脚本,而不是运行 Groovy 然后运行 Python。如果可以的话请告诉我该怎么做?
主要有2种方式:
import os
os.system("groovy your_script.groovy")
subprocess
库 (https://docs.python.org/2/library/subprocess.html)import subprocess
subprocess.check_call(["groovy", "your_script.groovy"])