文章分类 - Python
摘要:1.js var Base65 = { _0: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=', encode: function (a) { return a + this._0; } } var Base64
阅读全文
摘要:js代码: function add(a,b){ return a+b; } 1、PyExecJS 安装PyExecJS: pip install PyExecJS import execjs def testJs(): with open("1.js",'r') as f: js=execjs.c
阅读全文