Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

js2py示例

import js2py

# 超级慢,需要改写成python
js_code = """
function Add(x, y) {
    return x + y;
}
"""

js_add = js2py.eval_js(js_code)

if __name__ == "__main__":
    print(js_add(1, 3))