1.引入jar
org.python jython2.7.2
2.main方法
public static void main(String[] args) {
Properties props = new Properties();
props.put("python.home", "path to the Lib folder");
props.put("python.console.encoding", "UTF-8");
props.put("python.security.respectJavaAccessibility", "false");
props.put("python.import.site", "false");
Properties preprops = System.getProperties();
PythonInterpreter.initialize(preprops, props, new String[0]);
PythonInterpreter pyInterp = new PythonInterpreter();
pyInterp.exec("print('Hello Python World!')");
}
若是不添加红框所选内容会导致执行失败



