在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Python3.7.2中文文档-标准库-合集

Python3.7.2中文文档-标准库-合集

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:154.14M
  • 下载次数:4
  • 浏览次数:65
  • 发布时间:2021-12-06
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Python3.7.2中文文档根据官方Python3.7.2英文文档机器翻译
【实例截图】
【核心代码】
4744300845400914559.zip
└── 4.Python标准库
├── 0.0.Python标准库 - Python 3.7.pdf
├── 01.Python文字处理服务
│   ├── 0.文字处理服务 — Python 3.7.pdf
│   ├── 1.string - 常见字符串操作 - Python 3.7.pdf
│   ├── 2.re - 正则表达式操作 - Python 3.7.pdf
│   ├── 3.difflib - 用于计算增量的助手 - Python 3.7.pdf
│   ├── 4.textwrap - 文本换行和填充 - Python 3.7.pdf
│   ├── 5.unicodedata - Unicode数据库 - Python 3.7.pdf
│   ├── 6.stringprep - Internet字符串准备 - Python 3.7.pdf
│   ├── 7.readline - GNU readline接口 - Python 3.7.pdf
│   └── 8.rlcompleter - GNU readline的完成函数 - Python 3.7.pdf
├── 0.1.简介 - Python 3.7.pdf
├── 02.Python二进制数据服务
│   ├── 0.二进制数据服务 - Python 3.7.pdf
│   ├── 1.struct - 将字节解释为压缩二进制数据 - Python 3.7.pdf
│   └── 2.codecs- 编解码器注册表和基类 - Python 3.7.pdf
├── 0.2.内置函数 — Python 3.7.pdf
├── 03.Python数据类型
│   ├── 0.数据类型 - Python 3.7.pdf
│   ├── 10.copy - 浅层和深层复制操作 - Python 3.7.pdf
│   ├── 11.pprint - 数据漂亮的打印机 - Python 3.7.pdf
│   ├── 12.reprlib- 替代repr()实施 - Python 3.7.pdf
│   ├── 13.enum- 支持枚举 - Python 3.7.pdf
│   ├── 1.datetime - 基本日期和时间类型 - Python 3.7.pdf
│   ├── 2.calendar- 与日历相关的一般功能- Python 3.7.pdf
│   ├── 3.collections- 容器数据类型- Python 3.7.pdf
│   ├── 4.collections.abc - 容器的抽象基类 - Python 3.7.pdf
│   ├── 5.heapq - 堆队列算法 - Python 3.7.pdf
│   ├── 6.bisect - 数组二分算法 - Python 3.7.pdf
│   ├── 7.array - 高效的数值数组 - Python 3.7.pdf
│   ├── 8.weakref - 弱引用 - Python 3.7.pdf
│   └── 9.types- 动态类型创建和内置类型的名称— Python 3.7.pdf
├── 0.3.Python标准库 - Python 3.7.pdf
├── 04.Python数学和数学模块
│   ├── 0.数字和数学模块 - Python 3.7.pdf
│   ├── 1.numbers- 数字抽象基类 - Python 3.7.pdf
│   ├── 2.math - 数学函数 - Python 3.7.pdf
│   ├── 3.cmath - 复数的数学函数 - Python 3.7.pdf
│   ├── 4.decimal- 十进制定点和浮点运算 - Python 3.7.pdf
│   ├── 5.fractions- 有理数 - Python 3.7.pdf
│   ├── 6.random - 生成伪随机数 - Python 3.7.pdf
│   └── 7.statistics- 数学统计函数- Python 3.7.pdf
├── 0.4.内置类型 — Python 3.7.pdf
├── 05.Python功能编程模块
│   ├── 0.函数式编程模块 - Python 3.7.pdf
│   ├── 1.itertools- 为高效循环创建迭代器的函数 — Python 3.7.pdf
│   ├── 2.functools - 可调用对象的高阶函数和操作 - Python 3.7.pdf
│   └── 3.operator - 作为函数的标准运算符 - Python 3.7.pdf
├── 0.5.内置异常 - Python 3.7.pdf
├── 06.Python文件和目录访问
│   ├── 0.文件和目录访问 - Python 3.7.pdf
│   ├── 10.shutil - 高级文件操作 - Python 3.7.pdf
│   ├── 11.macpath - Mac OS 9路径操作函数 - Python 3.7.pdf
│   ├── 1.pathlib - 面向对象的文件系统路径 - Python 3.7.pdf
│   ├── 2.os.path- 通用路径名操作— Python 3.7.pdf
│   ├── 3.fileinput - 迭代多个输入流中的行 - Python 3.7.pdf
│   ├── 4.stat - 解释stat()结果 - Python 3.7.pdf
│   ├── 5.filecmp - 文件和目录比较 - Python 3.7.pdf
│   ├── 6.tempfile - 生成临时文件和目录 - Python 3.7.pdf
│   ├── 7.glob - Unix样式路径名模式扩展 - Python 3.7.pdf
│   ├── 8.fnmatch- Unix文件名模式匹配— Python 3.7.pdf
│   └── 9.linecache - 随机访问文本行 - Python 3.7.pdf
├── 07.Python数据持久性
│   ├── 0.数据持久性 - Python 3.7.pdf
│   ├── 1.pickle - Python对象序列化 - Python 3.7.pdf
│   ├── 2.copyreg - 注册pickle支持函数 - Python 3.7.pdf
│   ├── 3.shelve- Python对象持久性 - Python 3.7.pdf
│   ├── 4.marshal- 内部Python对象序列化 — Python 3.7.pdf
│   ├── 5.dbm - 与Unix“数据库”的接口 - Python 3.7.pdf
│   └── 6.sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.7.pdf
├── 08.Python数据压缩和存档
│   ├── 0.数据压缩和存档 - Python 3.7.pdf
│   ├── 1.zlib - 与gzip兼容的压缩 - Python 3.7.pdf
│   ├── 2.gzip - 支持gzip文件 - Python 3.7.pdf
│   ├── 3.bz2 - 支持bzip2压缩 - Python 3.7.pdf
│   ├── 4.lzma - 使用LZMA算法进行压缩 - Python 3.7.pdf
│   ├── 5.zipfile - 使用ZIP存档 - Python 3.7.pdf
│   └── 6.tarfile — Read and write tar archive files — Python 3.7.pdf
├── 09.Python文件格式
│   ├── 0.文件格式 - Python 3.7.pdf
│   ├── 1.csv - CSV文件读写 - Python 3.7.pdf
│   ├── 2.configparser - 配置文件解析器 - Python 3.7.pdf
│   ├── 3.netrc - netrc文件处理 - Python 3.7.pdf
│   ├── 4.xdrlib - 对XDR数据进行编码和解码 - Python 3.7.pdf
│   └── 5.plistlib - 生成并解析Mac OS X .plist文件 - Python 3.7.pdf
├── 10.Python加密服务
│   ├── 0.加密服务 - Python 3.7.pdf
│   ├── 1.hashlib - 安全散列和消息摘要 - Python 3.7.pdf
│   ├── 2.hmac- 消息认证的密钥哈希— Python 3.7.pdf
│   └── 3.secrets- 生成用于管理机密的安全随机数- Python 3.7.pdf
├── 11.Python通用操作系统服务
│   ├── 0.通用操作系统服务 — Python 3.7.pdf
│   ├── 10.curses- 字符单元格显示的终端处理— Python 3.7.pdf
│   ├── 11.curses.ascii - ASCII字符的实用程序 - Python 3.7.pdf
│   ├── 12.curses.panel - curses的面板堆栈扩展 - Python 3.7.pdf
│   ├── 13.platform - 访问底层平台的标识数据 - Python 3.7.pdf
│   ├── 14.errno- 标准的errno系统符号 — Python 3.7.pdf
│   ├── 15.ctypes - Python的外部函数库 - Python 3.7.pdf
│   ├── 1.os - 其他操作系统接口 - Python 3.7.pdf
│   ├── 2.io - 使用流的核心工具 - Python 3.7.pdf
│   ├── 3.time- 时间访问和转换— Python 3.7.pdf
│   ├── 4.argparse- 用于命令行选项,参数和子命令的解析器 — Python 3.7.pdf
│   ├── 5.getopt - 命令行选项的C风格解析器 - Python 3.7.pdf
│   ├── 6.logging - Python的日志记录工具 - Python 3.7.pdf
│   ├── 7.logging.config - 日志配置 - Python 3.7.pdf
│   ├── 8.logging.handlers - 日志处理程序 - Python 3.7.pdf
│   └── 9.getpass - 便携式密码输入 - Python 3.7.pdf
├── 12.Python并发执行
│   ├── 0.并发执行 - Python 3.7.pdf
│   ├── 1.threading- 基于线程的并行性 - Python 3.7.pdf
│   └── 2.multiprocessing- 基于进程的并行性- Python 3.7.pdf
├── 13.Python concurrent包
│   ├── 0.并发包 - Python 3.7.pdf
│   ├── 1.concurrent.futures - 启动并行任务 - Python 3.7.pdf
│   ├── 2.subprocess- 子进程管理— Python 3.7.pdf
│   ├── 3.sched - 事件调度程序 - Python 3.7.pdf
│   ├── 4.queue - 一个同步的队列类 - Python 3.7.pdf
│   ├── 5._thread- 低级线程 — Python 3.7.pdf
│   ├── 6._dummy_thread - _thread模块的直接替换 - Python 3.7.pdf
│   ├── 7.dummy_threading - 线程模块的直接替换 - Python 3.7.pdf
│   └── 8.contextvars- 上下文变量- Python 3.7.pdf
├── 14.Python网络和进程间通信
│   ├── 0.网络和进程间通信 - Python 3.7.pdf
│   ├── 10.传输和协议 - Python 3.7.pdf
│   ├── 11.策略 - Python 3.7.pdf
│   ├── 12.平台支持 - Python 3.7.pdf
│   ├── 13.高级API索引 - Python 3.7.pdf
│   ├── 14.低级API索引 - Python 3.7.pdf
│   ├── 15.使用asyncio进行开发 - Python 3.7.pdf
│   ├── 16.socket - 低级网络接口 - Python 3.7.pdf
│   ├── 17.ssl - 套接字对象的TLS _ SSL包装器 - Python 3.7.pdf
│   ├── 18.select - 等待I _ O完成 - Python 3.7.pdf
│   ├── 19.选择器 - 高级I _ O复用 - Python 3.7.pdf
│   ├── 1.asyncio - 异步I _ O - Python 3.7.pdf
│   ├── 20.asyncore - 异步套接字处理程序 - Python 3.7.pdf
│   ├── 21.asynchat - 异步套接字命令_响应处理程序 - Python 3.7.pdf
│   ├── 22.signal — Set handlers for asynchronous events — Python 3.7.pdf
│   ├── 23.mmap - 内存映射文件支持 - Python 3.7.pdf
│   ├── 2.协同程序和任务 - Python 3.7.pdf
│   ├── 3.Streams 流- Python 3.7.pdf
│   ├── 4.同步基元 - Python 3.7.pdf
│   ├── 5.子进程 - Python 3.7.pdf
│   ├── 6.Queues队列 — Python 3.7.pdf
│   ├── 7.例外 - Python 3.7.pdf
│   ├── 8.Event Loop事件循环 - Python 3.7.pdf
│   └── 9.期货 - Python 3.7.pdf
├── 15.Python互联网数据处理
│   ├── 01email- 电子邮件和MIME处理包
│   │   ├── 10email.message.Message:使用compat32API 表 — Python 3.7.pdf
│   │   ├── 11.email.mime:从头开始创建电子邮件和MIME对 — Python 3.7.pdf
│   │   ├── 12.email.header:国际化标题 - Python 3.7.pdf
│   │   ├── 13.email.charset:表示字符集 - Python 3.7.pdf
│   │   ├── 14.email.encoders_ Encoders — Python 3.7.pdf
│   │   ├── 15.email.utils:其他实用程序 - Python 3.7.pdf
│   │   ├── 16.email.iterators:迭代器 - Python 3.7.pdf
│   │   ├── 1.email - 电子邮件和MIME处理包 - Python 3.7.pdf
│   │   ├── 2.email.message:代表电子邮件 — Python 3.7.pdf
│   │   ├── 3.email.parser:解析电子邮件 - Python 3.7.pdf
│   │   ├── 4.email.generator:生成MIME文档 - Python 3.7.pdf
│   │   ├── 5.email.policy:策略对象 - Python 3.7.pdf
│   │   ├── 6.email.errors:异常和缺陷类 - Python 3.7.pdf
│   │   ├── 7.email.headerregistry:自定义标题对象 - Python 3.7.pdf
│   │   ├── 8.email.contentmanager:管理MIME内容 - Python 3.7.pdf
│   │   └── 9.电子邮件:示例 - Python 3.7.pdf
│   ├── 0.Internet Data Handling — Python 3.7.pdf
│   ├── 10.uu - 编码和解码uuencode文件 - Python 3.7.pdf
│   ├── 2.json - JSON编码器和解码器 - Python 3.7.pdf
│   ├── 3.mailcap - Mailcap文件处理 - Python 3.7.pdf
│   ├── 4.mailbox - 以各种格式处理邮箱 - Python 3.7.pdf
│   ├── 5.mimetypes - 将文件名映射到MIME类型 - Python 3.7.pdf
│   ├── 6.base64 - Base16,Base32,Base64,Base85数据编码 - Python 3.7.pdf
│   ├── 7.binhex - 对binhex4文件进行编码和解码 - Python 3.7.pdf
│   ├── 8.binascii - 在二进制和ASCII之间转换 - Python 3.7.pdf
│   └── 9.quopri - 对MIME引用的可打印数据进行编码和解码 - Python 3.7.pdf
├── 16.Python结构化标记处理工具
│   ├── 0.结构化标记处理工具 - Python 3.7.pdf
│   ├── 10.xml.sax.handler - SAX处理程序的基类 - Python 3.7.pdf
│   ├── 11.xml.sax.saxutils- SAX实用工具 — Python 3.7.pdf
│   ├── 12.xml.sax.xmlreader - XML解析器的接口 - Python 3.7.pdf
│   ├── 13.xml.parsers.expat - 使用Expat-Python 3.7.pdf
│   ├── 1.html - 超文本标记语言支持 - Python 3.7.pdf
│   ├── 2.html.parser - 简单的HTML和XHTML解析器 - Python 3.7.pdf
│   ├── 3.html.entities - HTML通用实体的定义 - Python 3.7.pdf
│   ├── 4.XML处理模块 - Python 3.7.pdf
│   ├── 5.xml.etree.ElementTree - ElementTree XML API - Python 3.7.pdf
│   ├── 6.xml.dom - 文档对象模型API - Python 3.7.pdf
│   ├── 7.xml.dom.minidom - 最小DOM实现 - Python 3.7.pdf
│   ├── 8.xml.dom.pulldom- 支持构建部分DOM树— Python 3.7.pdf
│   └── 9.xml.sax - 支持SAX2解析器 - Python 3.7.pdf
├── 17.Python互联网协议和支持
│   ├── 0.Internet协议和支持 - Python 3.7.pdf
│   ├── 10.http - HTTP模块 - Python 3.7.pdf
│   ├── 11.http.client - HTTP协议客户端 - Python 3.7.pdf
│   ├── 12.ftplib - FTP协议客户端 - Python 3.7.pdf
│   ├── 13.poplib - POP3协议客户端 - Python 3.7.pdf
│   ├── 14.imaplib - IMAP4协议客户端 - Python 3.7.pdf
│   ├── 15.nntplib - NNTP协议客户端 - Python 3.7.pdf
│   ├── 16.smtplib - SMTP协议客户端 - Python 3.7.pdf
│   ├── 17.smtpd - SMTP服务器 - Python 3.7.pdf
│   ├── 18.telnetlib - Telnet客户端 - Python 3.7.pdf
│   ├── 19.uuid — UUID objects according to RFC 4122 — Python 3.7.pdf
│   ├── 1.webbrowser - 方便的Web浏览器控制器 - Python 3.7.pdf
│   ├── 20.socketserver - 网络服务器的框架 - Python 3.7.pdf
│   ├── 21.http.server - HTTP服务器 - Python 3.7.pdf
│   ├── 22.http.cookies - HTTP状态管理 - Python 3.7.pdf
│   ├── 23.http.cookiejar - HTTP客户端的Cookie处理 - Python 3.7.pdf
│   ├── 24.xmlrpc - XMLRPC服务器和客户端模块 - Python 3.7.pdf
│   ├── 25.xmlrpc.client - XML-RPC客户端访问 - Python 3.7.pdf
│   ├── 26.xmlrpc.server - 基本XML-RPC服务器 - Python 3.7.pdf
│   ├── 27.ipaddress - IPv4 _ IPv6操作库 - Python 3.7.pdf
│   ├── 28.多媒体服务 - Python 3.7.pdf
│   ├── 29.audioop — Manipulate raw audio data — Python 3.7.pdf
│   ├── 2.cgi - 通用网关接口支持 - Python 3.7.pdf
│   ├── 30.aifc- 读写AIFF和AIFC文件 — Python 3.7.pdf
│   ├── 31.sunau- 读取和写入Sun AU文件— Python 3.7.pdf
│   ├── 32.wave - 读写WAV文件 - Python 3.7.pdf
│   ├── 33.chunk - 读取IFF分块数据 - Python 3.7.pdf
│   ├── 34.colorsys - 颜色系统之间的转换 - Python 3.7.pdf
│   ├── 35.imghdr- 确定图像的类型 — Python 3.7.pdf
│   ├── 36.sndhdr - 确定声音文件的类型 - Python 3.7.pdf
│   ├── 37.ossaudiodev - 访问兼容OSS的音频设备 - Python 3.7.pdf
│   ├── 3.cgitb- CGI脚本的回溯管理器 — Python 3.7.pdf
│   ├── 4.wsgiref - WSGI实用程序和参考实现 - Python 3.7.pdf
│   ├── 5.urllib — URL handling modules — Python 3.7.pdf
│   ├── 6.urllib.request - 用于打开URL的可扩展库 - Python 3.7.pdf
│   ├── 7.urllib.parse - 将URL解析为组件 - Python 3.7.pdf
│   ├── 8.urllib.error — Exception classes raised by urllib.request — Python 3.7.pdf
│   └── 9.urllib.robotparser - 用于robots.txt的解析器 - Python 3.7.pdf
├── 18.Python国际化
│   ├── 0.国际化 - Python 3.7.pdf
│   ├── 1.gettext - 多语言国际化服务 - Python 3.7.pdf
│   └── 2.locale - 国际化服务 - Python 3.7.pdf
├── 19.程序框架
│   ├── 0.程序框架 - Python 3.7.pdf
│   ├── 1.龟 - 龟图形 - Python 3.7.pdf
│   ├── 2.cmd - 支持面向行的命令解释器 - Python 3.7.pdf
│   └── 3.shlex - 简单的词法分析 - Python 3.7.pdf
├── 20.使用Tk的图形用户界面
│   ├── 0.使用Tk的图形用户界面 - Python 3.7.pdf
│   ├── 1.tkinter - Tcl _ Tk的Python接口 - Python 3.7.pdf
│   ├── 2.tkinter.ttk - Tk主题小部件 - Python 3.7.pdf
│   ├── 3.tkinter.tix - Tk的扩展小部件 - Python 3.7.pdf
│   ├── 4.tkinter.scrolledtext - 滚动文本小部件 - Python 3.7.pdf
│   ├── 5.IDLE - Python 3.7.pdf
│   └── 6.其他图形用户界面包 - Python 3.7.pdf
├── 21.开发工具
│   ├── 0.开发工具 - Python 3.7.pdf
│   ├── 1.输入 - 支持类型提示 - Python 3.7.pdf
│   ├── 2.pydoc - 文档生成器和在线帮助系统 - Python 3.7.pdf
│   ├── 3.doctest - 测试交互式Python示例 - Python 3.7.pdf
│   ├── 4.unittest - 单元测试框架 - Python 3.7.pdf
│   ├── 5.unittest.mock - 模拟对象库 - Python 3.7.pdf
│   ├── 6.unittest.mock - 入门 - Python 3.7.pdf
│   ├── 7.2to3 - 自动Python 2到3代码转换 - Python 3.7.pdf
│   └── 8.test - Python的回归测试包 - Python 3.7.pdf
├── 22.调试和分析
│   ├── 0.调试和分析 - Python 3.7.pdf
│   ├── 1.bdb - 调试器框架 - Python 3.7.pdf
│   ├── 2.faulthandler - 转储Python回溯 - Python 3.7.pdf
│   ├── 3.pdb - Python调试器 - Python 3.7.pdf
│   ├── 4.Python Profilers - Python 3.7.pdf
│   ├── 5.timeit - 测量小代码片段的执行时间 - Python 3.7.pdf
│   ├── 6.trace - 跟踪或跟踪Python语句执行 - Python 3.7.pdf
│   └── 7.tracemalloc - 跟踪内存分配 - Python 3.7.pdf
├── 23.软件包装和分发
│   ├── 0.软件包装和分发 - Python 3.7.pdf
│   ├── 1.distutils - 构建和安装Python模块 - Python 3.7.pdf
│   ├── 2.ensurepip - 引导pip安装程序 - Python 3.7.pdf
│   ├── 3.venv - 创建虚拟环境 - Python 3.7.pdf
│   └── 4.zipapp — Manage executable Python zip archives — Python 3.7.pdf
├── 24.Python运行时服务
│   ├── 0.Python运行时服务 - Python 3.7.pdf
│   ├── 10.traceback - 打印或检索堆栈回溯 - Python 3.7.pdf
│   ├── 11.__future__ - 未来语句定义 - Python 3.7.pdf
│   ├── 12.gc — Garbage Collector interface — Python 3.7.pdf
│   ├── 13.检查 - 检查活动对象 - Python 3.7.pdf
│   ├── 14.site - 特定于站点的配置挂钩 - Python 3.7.pdf
│   ├── 1.sys - 特定于系统的参数和函数 - Python 3.7.pdf
│   ├── 2.sysconfig - 提供对Python配置信息的访问 - Python 3.7.pdf
│   ├── 3.builtins - 内置对象 - Python 3.7.pdf
│   ├── 4.__main__ - 顶级脚本环境 - Python 3.7.pdf
│   ├── 5.警告 - 警告控制 - Python 3.7.pdf
│   ├── 6.dataclasses - 数据类 - Python 3.7.pdf
│   ├── 7.contextlib - with语句上下文的实用程序 - Python 3.7.pdf
│   ├── 8.abc - 抽象基类 - Python 3.7.pdf
│   └── 9.atexit - 退出处理程序 - Python 3.7.pdf
├── 25.自定义Python解释器
│   ├── 0.自定义Python解释器 - Python 3.7.pdf
│   ├── 1.代码 - 解释器基类 - Python 3.7.pdf
│   └── 2.codeop - 编译Python代码 - Python 3.7.pdf
├── 26.导入模块
│   ├── 0.导入模块 - Python 3.7.pdf
│   ├── 1.zipimport - 从Zip存档导入模块 - Python 3.7.pdf
│   ├── 2.pkgutil - 包扩展实用程序 - Python 3.7.pdf
│   ├── 3.modulefinder- 查找脚本使用的模块— Python 3.7.pdf
│   ├── 4.runpy - 定位和执行Python模块 - Python 3.7.pdf
│   └── 5.importlib — The implementation of import — Python 3.7.pdf
├── 27.Python语言服务
│   ├── 0.Python语言服务 - Python 3.7.pdf
│   ├── 10.py_compile - 编译Python源文件 - Python 3.7.pdf
│   ├── 11.compileall - 字节编译Python库 - Python 3.7.pdf
│   ├── 12.dis - Python字节码的反汇编程序 - Python 3.7.pdf
│   ├── 13.pickletools - 泡菜开发者的工具 - Python 3.7.pdf
│   ├── 1.解析器 - 访问Python解析树 - Python 3.7.pdf
│   ├── 2.ast - 抽象语法树 - Python 3.7.pdf
│   ├── 3.symtable- 访问编译器的符号表 — Python 3.7.pdf
│   ├── 4.symbol - 与Python解析树一起使用的常量 - Python 3.7.pdf
│   ├── 5.token - 与Python解析树一起使用的常量 - Python 3.7.pdf
│   ├── 6.keyword - Python关键字测试 - Python 3.7.pdf
│   ├── 7.tokenize - Python源代码 - Python 3.7.pdf
│   ├── 8.tabnanny - 检测模糊缩进 - Python 3.7.pdf
│   └── 9.pyclbr - Python类浏览器支持 - Python 3.7.pdf
├── 28.杂项服务
│   ├── 0.杂项服务 - Python 3.7.pdf
│   └── 1.formatter - 通用输出格式 - Python 3.7.pdf
├── 29.MS Windows特定服务
│   ├── 0.MS Windows特定服务 - Python 3.7.pdf
│   ├── 1.msilib - 读取和写入Microsoft Installer文件 - Python 3.7.pdf
│   ├── 2.msvcrt- 来自MS VC ++运行时的有用例程 — Python 3.7.pdf
│   ├── 3.winreg - Windows注册表访问 - Python 3.7.pdf
│   └── 4.winsound - Windows的声音播放界面 - Python 3.7.pdf
├── 30.Unix特定服务
│   ├── 0.Unix特定服务 - Python 3.7.pdf
│   ├── 10.pipes- shell管道接口 - Python 3.7.pdf
│   ├── 11.resource- 资源使用信息 - Python 3.7.pdf
│   ├── 12.nis - Sun的NIS接口(黄页) - Python 3.7.pdf
│   ├── 13.syslog - Unix syslog库例程 - Python 3.7.pdf
│   ├── 1.posix — The most common POSIX system calls — Python 3.7.pdf
│   ├── 2.pwd - 密码数据库 - Python 3.7.pdf
│   ├── 3.spwd - 影子密码数据库 - Python 3.7.pdf
│   ├── 4.grp- 组数据库 — Python 3.7.pdf
│   ├── 5.crypt- 检查Unix密码的功能— Python 3.7.pdf
│   ├── 6.termios - POSIX样式tty控件 - Python 3.7.pdf
│   ├── 7.tty- 终端控制功能— Python 3.7.pdf
│   ├── 8.pty - 伪终端实用程序 - Python 3.7.pdf
│   └── 9.fcntl - fcntl和ioctl系统调用 - Python 3.7.pdf
├── 31.被取代的模块
│   ├── 0.被取代的模块 - Python 3.7.pdf
│   ├── 1.optparse - 命令行选项的解析器 - Python 3.7.pdf
│   └── 2.imp - 访问导入内部 - Python 3.7.pdf
└── 32.未记载的模块 - Python 3.7.pdf

33 directories, 309 files

标签:

实例下载地址

Python3.7.2中文文档-标准库-合集

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警