python2.7中文手册.chm

1 MB/编程其他

简介 相关 评论

简介

python2.7中文手册.chm是一款强大的编程语言,具有简单易用的特点,python2.7是较稳定的一个版本,这个python2.7中文手册由官方发布,为中文版本,用户可以通过本书了解python2.7使用,可以轻松让你学会python编程。Oh9红软基地

软件功能

Python(KK 英语发音:/ˈpaɪθən/)是一种面向对象、直译式计算机程序设计语言。也是一种功能强大而完善的通用型语言,已经具有十多年的发展历史,成熟且稳定。Python 具有脚本语言中最丰富和强大的类库,足以支持绝大多数日常应用。 Python语法简捷而清晰,具有丰富和强大的类库。它常被昵称为胶水语言,它能够很轻松的把用其他语言制作的各种模块(尤其是C/C++)轻松地联结在一起。Python的名字来源于一个喜剧。也许最初设计Python这种语言的人并没有想到Python会在工业和科研上获得如此广泛的使用。Oh9红软基地

软件特色

前言 Front Matter Oh9红软基地
Contents Oh9红软基地
1. 开胃菜 Whetting Your Appetite Oh9红软基地
2. 使用Python解释器 Using the Python Interpreter Oh9红软基地
2.1 调用解释器 Invoking the Interpreter Oh9红软基地
2.1.1 参数传递 Argument Passing Oh9红软基地
2.1.2 交互模式 Interactive Mode Oh9红软基地
2.2 解释器及其环境 The Interpreter and Its Environment Oh9红软基地
2.2.1 错误处理 Error Handling Oh9红软基地
2.2.2 执行Python脚本 Executable Python Scripts Oh9红软基地
2.2.3 源程序编码 Source Code Encoding Oh9红软基地
2.2.4 交互式环境的启动文件 The Interactive Startup File Oh9红软基地
3. Python简介 An Informal Introduction to Python Oh9红软基地
3.1 将Python当作计算器使用 Using Python as a Calculator Oh9红软基地
3.1.1 数值 Numbers Oh9红软基地
3.1.2 字符串 Strings Oh9红软基地
3.1.3 Unicode 字符串 Unicode Strings Oh9红软基地
3.1.4 链表 Lists Oh9红软基地
3.2 开始编程 First Steps Towards Programming Oh9红软基地
4. 深入流程控制 More Control Flow Tools Oh9红软基地
4.1 if 语句 if Statements Oh9红软基地
4.2 for 语句 for Statements Oh9红软基地
4.3 range() 函数 The range() Function Oh9红软基地
4.4 break 和 continue 语句, 以及 循环中的 else 子句 break and continue Statements, and else Clauses on Loops Oh9红软基地
4.5 pass 语句 pass Statements Oh9红软基地
4.6 Defining Functions Oh9红软基地
4.7 深入函数定义 More on Defining Functions Oh9红软基地
4.7.1 参数默认值 Default Argument Values Oh9红软基地
4.7.2 关键字参数 Keyword Arguments Oh9红软基地
4.7.3 可变参数表 Arbitrary Argument Lists Oh9红软基地
4.7.4 参数列表的分拆 Unpacking Argument Lists Oh9红软基地
4.7.5 Lambda 形式 Lambda Forms Oh9红软基地
4.7.6 文档字符串 Documentation Strings Oh9红软基地
5. 数据结构 Data Structures Oh9红软基地
5.1 深入链表 More on Lists Oh9红软基地
5.1.1 把链表当作堆栈使用 Using Lists as Stacks Oh9红软基地
5.1.2 把链表当作队列使用 Using Lists as Queues Oh9红软基地
5.1.3 函数化编程工具 Functional Programming Tools Oh9红软基地
5.1.4 链表推导式 List Comprehensions Oh9红软基地
5.2 del 语句 Oh9红软基地
5.3 元组(Tuples)和序列(Sequences )Tuples and Sequences Oh9红软基地
5.4 Dictionaries 字典 Oh9红软基地
5.5 循环技巧 Looping Techniques Oh9红软基地
5.6 深入条件控制 More on Conditions Oh9红软基地
5.7 比较序列和其它类型 Comparing Sequences and Other Types Oh9红软基地
6. 模块 Modules Oh9红软基地
6.1 深入模块 More on Modules Oh9红软基地
6.1.1 模块搜索路径 The Module Search Path Oh9红软基地
6.1.2 “编译”Python文件 ``Compiled'' Python files Oh9红软基地
6.2 标准模块 Standard Modules Oh9红软基地
6.3 dir() 函数 dir() Function Oh9红软基地
6.4 包 Packages Oh9红软基地
6.4.1 以 * 方式加载包 Importing * From a Package Oh9红软基地
6.4.2 内置包(Intra-package)参考 Intra-package References Oh9红软基地
6.4.3 多重路径中的包 Packages in Multiple Directories Oh9红软基地
7. 输入和输出 Input and Output Oh9红软基地
7.1 设计输出格式 Fancier Output Formatting Oh9红软基地
7.2 读写文件 Reading and Writing Files Oh9红软基地
7.2.1 文件对象(file object)的方法 Methods of File Objects Oh9红软基地
7.2.2 pickle 模块 pickle Module Oh9红软基地
8. 错误和异常 Errors and Exceptions Oh9红软基地
8.1 异常 Exceptions Oh9红软基地
8.2 处理异常 Handling Exceptions Oh9红软基地
8.3 抛出异常 Raising Exceptions Oh9红软基地
8.4 用户自定义异常 User-defined Exceptions Oh9红软基地
8.5 定义清理行为 Defining Clean-up Actions Oh9红软基地
9. 类 Classes Oh9红软基地
9.1 有关术语的话题 A Word About Terminology Oh9红软基地
9.2 Python 作用域和命名空间 Python Scopes and Name Spaces Oh9红软基地
9.3 初识类 A First Look at Classes Oh9红软基地
9.3.1 类定义语法 Class Definition Syntax Oh9红软基地
9.3.2 类对象 Class Objects Oh9红软基地
9.3.3 实例对象 Instance Objects Oh9红软基地
9.3.4 方法对象 Method Objects Oh9红软基地
9.4 一些说明 Random Remarks Oh9红软基地
9.5 继承 Inheritance Oh9红软基地
9.5.1 多继承 Multiple Inheritance Oh9红软基地
9.6 私有变量 Private Variables Oh9红软基地
9.7 补充 Odds and Ends Oh9红软基地
9.8 异常也是类 Exceptions Are Classes Too Oh9红软基地
9.9 迭代器 Iterators Oh9红软基地
9.10 生成器 Generators Oh9红软基地
10. 标准库概览 Brief Tour of the Standard Library Oh9红软基地
10.1 操作系统概览 Operating System Interface Oh9红软基地
10.2 文件通配符 File Wildcards Oh9红软基地
10.3 命令行参数 Command Line Arguments Oh9红软基地
10.4 错误输出重定向和程序终止 Error Output Redirection and Program Termination Oh9红软基地
10.5 字符串正则匹配 String Pattern Matching Oh9红软基地
10.6 数学 Mathematics Oh9红软基地
10.7 互联网访问 Internet Access Oh9红软基地
10.8 日期和时间 Dates and Times Oh9红软基地
10.9 数据压缩 Data Compression Oh9红软基地
10.10 性能度量 Performance Measurement Oh9红软基地
10.11 质量控制 Quality Control Oh9红软基地
10.12 Batteries Included Oh9红软基地
11. What Now? Oh9红软基地
A. Interactive Input Editing and History Substitution Oh9红软基地
A.1 Line Editing Oh9红软基地
A.2 History Substitution Oh9红软基地
A.3 Key Bindings Oh9红软基地
A.4 Commentary Oh9红软基地
B. Floating Point Arithmetic: Issues and Limitations Oh9红软基地
B.1 Representation Error Oh9红软基地
C. History and License Oh9红软基地
D. Glossary Oh9红软基地
About this document 。Oh9红软基地

软件说明

这是python2.7中文手册.chm,python中文手册chm,内容丰富全面,不但是一本手册,你完全可以把她作为一本Python的入门教程,教你如何使用Python解释器、流程控制、数据结构、模板、输入和输出、错误和异常、类和标准库详解等方面的知识技巧。同时后附的手册可以方便你的查询。Oh9红软基地

软件截图

python2.7中文手册.chmOh9红软基地

展开

同类推荐

相关文章