智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=09b2a6b63e829ef00c112d80fe78d1df
安装
打开CMD控制台输入命令pip install PyExecJS
方法
eval()
输入参数:source(JS语句)、cwd(路径)
返回值:result(语句执行结果)
compile()
输入参数:source(JS语句)、cwd(路径)
返回值:编译后的对象
call()
输入参数:name(要调用的JS方法名称)、*args(方法所需要的参数,可多个)
返回值:result(运行方法的返回结果)
模板
执行JS语句
import execjs
result=execjs.eval("1+1")
print(result)
调用JS方法
import execjs
js=execjs.compile('''function sum(i,j){sum=i+j;return sum}''')
result=js.call('sum',1,2)
print(result)
————————————————
我们的python技术交流群:941108876
智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=c7dcd205a4fdab0d6e8ca200b31b3489