国产午夜福利在线观看红一片,久久精品国产再热青青青,又硬又粗又大一区二区三区视频,中文字幕乱码免费,久久超碰97文字幕 ,中国精学生妹品射精久久

  • 紅軟基地:您身邊最放心的安全下載站!
您所在的位置:首頁 > 軟件 > 編程開發(fā) > 編程其他 > python中文手冊chm

python中文手冊chm

軟件類型:
國產(chǎn)軟件
軟件語言:
簡體中文
軟件大。
392 KB
軟件授權:
免費軟件
軟件評級:
4
更新時間:
2016-03-31
應用平臺:
WinXP, Win7, WinAll
同類推薦軟件
軟件簡介

python中文手冊chm,內(nèi)容豐富全面,不但是一本手冊,你完全可以把她作為一本Python的入門教程,教你如何使用Python解釋器、流程控制、數(shù)據(jù)結構、模板、輸入和輸出、錯誤和異常、類和標準庫詳解等方面的知識技巧。同時后附的手冊可以方便你的查詢。v9Z紅軟基地

python中文手冊chmv9Z紅軟基地

python中文手冊chm目錄

前言 Front Matter v9Z紅軟基地
Contents v9Z紅軟基地
1. 開胃菜 Whetting Your Appetite v9Z紅軟基地
2. 使用Python解釋器 Using the Python Interpreter v9Z紅軟基地
2.1 調(diào)用解釋器 Invoking the Interpreter v9Z紅軟基地
2.1.1 參數(shù)傳遞 Argument Passing v9Z紅軟基地
2.1.2 交互模式 Interactive Mode v9Z紅軟基地
2.2 解釋器及其環(huán)境 The Interpreter and Its Environment v9Z紅軟基地
2.2.1 錯誤處理 Error Handling v9Z紅軟基地
2.2.2 執(zhí)行Python腳本 Executable Python Scripts v9Z紅軟基地
2.2.3 源程序編碼 Source Code Encoding v9Z紅軟基地
2.2.4 交互式環(huán)境的啟動文件 The Interactive Startup File v9Z紅軟基地
3. Python簡介 An Informal Introduction to Python v9Z紅軟基地
3.1 將Python當作計算器使用 Using Python as a Calculator v9Z紅軟基地
3.1.1 數(shù)值 Numbers v9Z紅軟基地
3.1.2 字符串 Strings v9Z紅軟基地
3.1.3 Unicode 字符串 Unicode Strings v9Z紅軟基地
3.1.4 鏈表 Lists v9Z紅軟基地
3.2 開始編程 First Steps Towards Programming v9Z紅軟基地
4. 深入流程控制 More Control Flow Tools v9Z紅軟基地
4.1 if 語句 if Statements v9Z紅軟基地
4.2 for 語句 for Statements v9Z紅軟基地
4.3 range() 函數(shù) The range() Function v9Z紅軟基地
4.4 break 和 continue 語句, 以及 循環(huán)中的 else 子句 break and continue Statements, and else Clauses on Loops v9Z紅軟基地
4.5 pass 語句 pass Statements v9Z紅軟基地
4.6 Defining Functions v9Z紅軟基地
4.7 深入函數(shù)定義 More on Defining Functions v9Z紅軟基地
4.7.1 參數(shù)默認值 Default Argument Values v9Z紅軟基地
4.7.2 關鍵字參數(shù) Keyword Arguments v9Z紅軟基地
4.7.3 可變參數(shù)表 Arbitrary Argument Lists v9Z紅軟基地
4.7.4 參數(shù)列表的分拆 Unpacking Argument Lists v9Z紅軟基地
4.7.5 Lambda 形式 Lambda Forms v9Z紅軟基地
4.7.6 文檔字符串 Documentation Strings v9Z紅軟基地
5. 數(shù)據(jù)結構 Data Structures v9Z紅軟基地
5.1 深入鏈表 More on Lists v9Z紅軟基地
5.1.1 把鏈表當作堆棧使用 Using Lists as Stacks v9Z紅軟基地
5.1.2 把鏈表當作隊列使用 Using Lists as Queues v9Z紅軟基地
5.1.3 函數(shù)化編程工具 Functional Programming Tools v9Z紅軟基地
5.1.4 鏈表推導式 List Comprehensions v9Z紅軟基地
5.2 del 語句 v9Z紅軟基地
5.3 元組(Tuples)和序列(Sequences )Tuples and Sequences v9Z紅軟基地
5.4 Dictionaries 字典 v9Z紅軟基地
5.5 循環(huán)技巧 Looping Techniques v9Z紅軟基地
5.6 深入條件控制 More on Conditions v9Z紅軟基地
5.7 比較序列和其它類型 Comparing Sequences and Other Types v9Z紅軟基地
6. 模塊 Modules v9Z紅軟基地
6.1 深入模塊 More on Modules v9Z紅軟基地
6.1.1 模塊搜索路徑 The Module Search Path v9Z紅軟基地
6.1.2 “編譯”Python文件 ``Compiled'' Python files v9Z紅軟基地
6.2 標準模塊 Standard Modules v9Z紅軟基地
6.3 dir() 函數(shù) dir() Function v9Z紅軟基地
6.4 包 Packages v9Z紅軟基地
6.4.1 以 * 方式加載包 Importing * From a Package v9Z紅軟基地
6.4.2 內(nèi)置包(Intra-package)參考 Intra-package References v9Z紅軟基地
6.4.3 多重路徑中的包 Packages in Multiple Directories v9Z紅軟基地
7. 輸入和輸出 Input and Output v9Z紅軟基地
7.1 設計輸出格式 Fancier Output Formatting v9Z紅軟基地
7.2 讀寫文件 Reading and Writing Files v9Z紅軟基地
7.2.1 文件對象(file object)的方法 Methods of File Objects v9Z紅軟基地
7.2.2 pickle 模塊 pickle Module v9Z紅軟基地
8. 錯誤和異常 Errors and Exceptions v9Z紅軟基地
8.1 異常 Exceptions v9Z紅軟基地
8.2 處理異常 Handling Exceptions v9Z紅軟基地
8.3 拋出異常 Raising Exceptions v9Z紅軟基地
8.4 用戶自定義異常 User-defined Exceptions v9Z紅軟基地
8.5 定義清理行為 Defining Clean-up Actions v9Z紅軟基地
9. 類 Classes v9Z紅軟基地
9.1 有關術語的話題 A Word About Terminology v9Z紅軟基地
9.2 Python 作用域和命名空間 Python Scopes and Name Spaces v9Z紅軟基地
9.3 初識類 A First Look at Classes v9Z紅軟基地
9.3.1 類定義語法 Class Definition Syntax v9Z紅軟基地
9.3.2 類對象 Class Objects v9Z紅軟基地
9.3.3 實例對象 Instance Objects v9Z紅軟基地
9.3.4 方法對象 Method Objects v9Z紅軟基地
9.4 一些說明 Random Remarks v9Z紅軟基地
9.5 繼承 Inheritance v9Z紅軟基地
9.5.1 多繼承 Multiple Inheritance v9Z紅軟基地
9.6 私有變量 Private Variables v9Z紅軟基地
9.7 補充 Odds and Ends v9Z紅軟基地
9.8 異常也是類 Exceptions Are Classes Too v9Z紅軟基地
9.9 迭代器 Iterators v9Z紅軟基地
9.10 生成器 Generators v9Z紅軟基地
10. 標準庫概覽 Brief Tour of the Standard Library v9Z紅軟基地
10.1 操作系統(tǒng)概覽 Operating System Interface v9Z紅軟基地
10.2 文件通配符 File Wildcards v9Z紅軟基地
10.3 命令行參數(shù) Command Line Arguments v9Z紅軟基地
10.4 錯誤輸出重定向和程序終止 Error Output Redirection and Program Termination v9Z紅軟基地
10.5 字符串正則匹配 String Pattern Matching v9Z紅軟基地
10.6 數(shù)學 Mathematics v9Z紅軟基地
10.7 互聯(lián)網(wǎng)訪問 Internet Access v9Z紅軟基地
10.8 日期和時間 Dates and Times v9Z紅軟基地
10.9 數(shù)據(jù)壓縮 Data Compression v9Z紅軟基地
10.10 性能度量 Performance Measurement v9Z紅軟基地
10.11 質(zhì)量控制 Quality Control v9Z紅軟基地
10.12 Batteries Included v9Z紅軟基地
11. What Now? v9Z紅軟基地
A. Interactive Input Editing and History Substitution v9Z紅軟基地
A.1 Line Editing v9Z紅軟基地
A.2 History Substitution v9Z紅軟基地
A.3 Key Bindings v9Z紅軟基地
A.4 Commentary v9Z紅軟基地
B. Floating Point Arithmetic: Issues and Limitations v9Z紅軟基地
B.1 Representation Error v9Z紅軟基地
C. History and License v9Z紅軟基地
D. Glossary v9Z紅軟基地
About this document ...v9Z紅軟基地

軟件下載地址
python中文手冊chm
軟件推薦
下載排行

精品軟件

熱門關鍵詞

熱門軟件推薦