书栈网 · BookStack 本次搜索耗时 0.035 秒,为您找到 2945 个相关结果.
  • 枚举类的使用

    一、枚举类的使用 一、枚举类的使用 实际开发中,我们离不开定义常量,当我们需要定义常量时,其中一个办法是用大写变量通过整数来定义,例如月份: JAN = 1 FEB = 2 MAR = 3 ... NOV = 11 DEC = 12 当然这样做简单快捷,缺点是类型是 int ,并且仍然是变...
  • 4. 在Windows上使用 Python

    4. 在Windows上使用 Python 4.1. 完整安装程序 4.1.1. 安装步骤 4.1.2. 删除 MAX_PATH 限制 4.1.3. 无UI 安装 4.1.4. 免下载安装 4.1.5. 修改安装 4.1.6. 安装自由线程二进制文件 4.2. Microsoft Store包 4.2.1. 已知的问题 4.2.1.1. 本地数...
  • Docker

    Docker Setup Getting Started Introduction Starting a Session Cluster on Docker Deployment Modes Application Mode JobManager additional command line arguments Session Mode Fl...
  • Docker

    Docker Setup Getting Started Introduction Starting a Session Cluster on Docker Deployment Modes Application Mode on Docker JobManager additional command line arguments Per-Job...
  • 4. 在Windows上使用 Python

    4. 在Windows上使用 Python 4.1. 完整安装程序 4.1.1. 安装步骤 4.1.2. 删除 MAX_PATH 限制 4.1.3. 无UI 安装 4.1.4. 免下载安装 4.1.5. 修改安装 4.2. Microsoft Store包 4.2.1. 已知的问题 4.3. nuget.org 安装包 4.4. 可嵌入的包...
  • TiKV in 5 Minutes

    Prerequisites Set up a local TiKV cluster with the default options Monitor the TiKV cluster Write data to and read data from the TiKV cluster Use Java Use Python Stop and del...
  • Building the Documentation

    Building the Documentation Building the Documentation All documentation and related files are located in the source tree under the doc directory. The Makefiles must be generat...
  • v2.0

    v2.0 1. EVM是什么 2. 更新内容 3. 下个版本更新计划 4. EVM在线帮助手册 5. 加入EVM官方QQ技术交流群 6. 贡献代码 7、联系我们 v2.0 1. EVM是什么 EVM 全称 Embedded Virtual Machine ,本质上是一款通用、精简的嵌入式虚拟机,由语法解析前端框架和字节码运行...
  • 5.11 文件路径名的操作

    5.11 文件路径名的操作 问题 解决方案 讨论 5.11 文件路径名的操作 问题 你需要使用路径名来获取文件名,目录名,绝对路径等等。 解决方案 使用 os.path 模块中的函数来操作路径名。下面是一个交互式例子来演示一些关键的特性: >>> import os >>> path = '/Users/beazl...
  • 5.3 使用其他分隔符或行终止符打印

    5.3 使用其他分隔符或行终止符打印 问题 解决方案 讨论 5.3 使用其他分隔符或行终止符打印 问题 你想使用 print() 函数输出数据,但是想改变默认的分隔符或者行尾符。 解决方案 可以使用在 print() 函数中使用 sep 和 end 关键字参数,以你想要的方式输出。比如: >>> print ( 'ACM...