# encoding=utf-8 __author__ = 'Meimz' """ Created by Meimz on 2015/9/19. Email: zh-lei@foxmail.com WEB: www.cottp.com """ import PyV8 ctxt = PyV8.JSContext() ctxt.enter() func = ctxt.eval('''(function(a,b){return a*b})''') print func(5,6) 打印 :30