Python 执行Javascript脚本

一、安装第三方库

pip install PyExecJS

二、创建一个js文件

//test.js
function add(a,b){
    return a+b
}

三、创建一个python文件

#testJs.py

import execjs
ctx = execjs.compile(open('./test.js', 'r', encoding='utf-8').read())
print(ctx.call('add', 8, 9))

image

posted @ 2023-05-30 18:08  弩哥++  阅读(54)  评论(0编辑  收藏  举报