CoolFace
Apppublic

iShare/JavascriptPython

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py19 linesDownload Raw Back to root
1import execjs2 3# Define some JavaScript code4js_code = """5function addNumbers(a, b) {6   return a + b;7}8 9var result = addNumbers(2, 3);10"""11 12# Use execjs to execute the JavaScript code13ctx = execjs.compile(js_code)14 15# Get the result of the JavaScript code16result = ctx.eval('result')17 18# Print the result19print(result)