登录 注册
当前位置:主页 > 资源下载 > 9 > node-python-bridge:Node.js 到 Python 的桥接下载

node-python-bridge:Node.js 到 Python 的桥接下载

  • 更新:2024-08-06 10:37:08
  • 大小:18KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

蟒桥 最健壮和简单的 Python 桥。 以及下面其他 Python 桥的,支持 Windows。 应用程序接口 npm install python-bridge 'use strict' ; let assert = require ( 'assert' ) ; let pythonBridge = require ( 'python-bridge' ) ; let python = pythonBridge ( ) ; python . ex `import math` ; python `math.sqrt(9)` . then ( x => assert . equal ( x , 3 ) ) ; let list = [ 3 , 4 , 2 , 1 ] ; python `sorted( ${ list } )` . then ( x => assert . deepEq