书栈网 · BookStack 本次搜索耗时 0.030 秒,为您找到 894 个相关结果.
  • pip show

    pip show Usage Description Options Examples pip show Usage Unix/macOS python - m pip show [ options ] <package> ... Windows py - m pip show [ options ] <pa...
  • 在Linux上安装Python 2

    在Linux上安装Python 2 Setuptools & Pip 虚拟环境 在Linux上安装Python 2 注解 查看我们的 在Linux上安装Python 3指南 。 最新版本的CentOS, Fedora, Red Hat 企业版 Linux (RHEL) 和 Ubuntu 自带 Python 2.7 。 想要获取已安装的P...
  • Python 引擎

    Python 引擎 1.Python引擎使用前的环境配置 2.Python引擎的配置和部署 2.1 Python版本的选择和编译 2.2 python engineConn部署和加载 3.Python引擎的使用 准备操作 3.1 通过Linkis SDK进行使用 3.2 通过Linkis-cli进行任务提交 3.3 Scriptis的使用方式 ...
  • Python API

    Python API Seafile Python API" level="1"> Seafile Python API Install Seafile Server" level="2"> Install Seafile Server Example: Copy Library" level="2"> Example: Copy Library Se...
  • 1 前言

    1 前言和预备 1 前言和预备 本文指导你使用 PLY 进行词法分析和语法解析的,鉴于解析本身是个复杂性的事情,在你使用 PLY 投入大规模的开发前,我强烈建议你完整地阅读或者浏览本文档。 PLY-3.0 能同时兼容 Python2 和 Python3。需要注意的是,对于 Python3 的支持是新加入的,还没有广泛的测试(尽管所有的例子和单元测试...
  • 安装Pythonh

    安装Python 大多数的Linux/Unix系统的Max OS X都自带Python。如果没有或者版本过低,你可以通过下面的命令安装: Ubuntu/Debian及其衍生系统: $ sudo apt - get install python2 . 7 sudo 是一个是类Unix系统的一个命令,它允许用户以别的用户(一般是超级用户,或...
  • Python Connector

    Python Connector 安装准备 Python客户端安装 Linux Windows 使用 代码示例 帮助信息 Python Connector 安装准备 已安装TDengine, 如果客户端在Windows上,需要安装Windows 版本的TDengine客户端 (Windows TDengine 客户端安装) 已安...
  • map/reduce/filter

    2852 2018-03-03 《Python 之旅》
    map/reduce/filter map reduce filter 小结 参考资料 map/reduce/filter map/reduce/filter 是 Python 中较为常用的内建高阶函数,它们为函数式编程提供了不少便利。 map map 函数的使用形式如下: map ( function , sequence )...
  • Python Engine Usage

    Python Engine Usage 1. Environment configuration before using Python EngineConn 2. Python EngineConn configuration and deployment 2.1 Python version selection and compilation 2.2...
  • Filter

    Filter Filter 顾名思义,filter 过滤列表中的元素,并且返回一个由所有符合要求的元素所构成的列表,符合要求 即函数映射到该元素时返回值为True. 这里是一个简短的例子: number_list = range (- 5 , 5 ) less_than_zero = filter ( lambda x : ...