" />

久久无码高潮喷水抽搐,极品馒头泬19p,久久人人爽精品玩人妻av,精品国产成人国产在线视,精品视频一区二区三区在线观看

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

python2.7中文手冊.chm

軟件類型:
國產(chǎn)軟件
軟件語言:
簡體中文
軟件大。
1 MB
軟件授權(quán):
免費(fèi)軟件
軟件評級:
4
更新時間:
2017-08-17
應(yīng)用平臺:
WinXP, Win7, WinAll
同類推薦軟件
軟件簡介

python2.7中文手冊.chm是一款強(qiáng)大的編程語言,具有簡單易用的特點(diǎn),python2.7是較穩(wěn)定的一個版本,這個python2.7中文手冊由官方發(fā)布,為中文版本,用戶可以通過本書了解python2.7使用,可以輕松讓你學(xué)會python編程。Oh9紅軟基地

軟件功能

Python(KK 英語發(fā)音:/ˈpaɪθən/)是一種面向?qū)ο、直譯式計(jì)算機(jī)程序設(shè)計(jì)語言。也是一種功能強(qiáng)大而完善的通用型語言,已經(jīng)具有十多年的發(fā)展歷史,成熟且穩(wěn)定。Python 具有腳本語言中最豐富和強(qiáng)大的類庫,足以支持絕大多數(shù)日常應(yīng)用。 Python語法簡捷而清晰,具有豐富和強(qiáng)大的類庫。它常被昵稱為膠水語言,它能夠很輕松的把用其他語言制作的各種模塊(尤其是C/C++)輕松地聯(lián)結(jié)在一起。Python的名字來源于一個喜劇。也許最初設(shè)計(jì)Python這種語言的人并沒有想到Python會在工業(yè)和科研上獲得如此廣泛的使用。Oh9紅軟基地

軟件特色

前言 Front Matter Oh9紅軟基地
Contents Oh9紅軟基地
1. 開胃菜 Whetting Your Appetite Oh9紅軟基地
2. 使用Python解釋器 Using the Python Interpreter Oh9紅軟基地
2.1 調(diào)用解釋器 Invoking the Interpreter Oh9紅軟基地
2.1.1 參數(shù)傳遞 Argument Passing Oh9紅軟基地
2.1.2 交互模式 Interactive Mode Oh9紅軟基地
2.2 解釋器及其環(huán)境 The Interpreter and Its Environment Oh9紅軟基地
2.2.1 錯誤處理 Error Handling Oh9紅軟基地
2.2.2 執(zhí)行Python腳本 Executable Python Scripts Oh9紅軟基地
2.2.3 源程序編碼 Source Code Encoding Oh9紅軟基地
2.2.4 交互式環(huán)境的啟動文件 The Interactive Startup File Oh9紅軟基地
3. Python簡介 An Informal Introduction to Python Oh9紅軟基地
3.1 將Python當(dāng)作計(jì)算器使用 Using Python as a Calculator Oh9紅軟基地
3.1.1 數(shù)值 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() 函數(shù) The range() Function Oh9紅軟基地
4.4 break 和 continue 語句, 以及 循環(huán)中的 else 子句 break and continue Statements, and else Clauses on Loops Oh9紅軟基地
4.5 pass 語句 pass Statements Oh9紅軟基地
4.6 Defining Functions Oh9紅軟基地
4.7 深入函數(shù)定義 More on Defining Functions Oh9紅軟基地
4.7.1 參數(shù)默認(rèn)值 Default Argument Values Oh9紅軟基地
4.7.2 關(guān)鍵字參數(shù) Keyword Arguments Oh9紅軟基地
4.7.3 可變參數(shù)表 Arbitrary Argument Lists Oh9紅軟基地
4.7.4 參數(shù)列表的分拆 Unpacking Argument Lists Oh9紅軟基地
4.7.5 Lambda 形式 Lambda Forms Oh9紅軟基地
4.7.6 文檔字符串 Documentation Strings Oh9紅軟基地
5. 數(shù)據(jù)結(jié)構(gòu) Data Structures Oh9紅軟基地
5.1 深入鏈表 More on Lists Oh9紅軟基地
5.1.1 把鏈表當(dāng)作堆棧使用 Using Lists as Stacks Oh9紅軟基地
5.1.2 把鏈表當(dāng)作隊(duì)列使用 Using Lists as Queues Oh9紅軟基地
5.1.3 函數(shù)化編程工具 Functional Programming Tools Oh9紅軟基地
5.1.4 鏈表推導(dǎo)式 List Comprehensions Oh9紅軟基地
5.2 del 語句 Oh9紅軟基地
5.3 元組(Tuples)和序列(Sequences )Tuples and Sequences Oh9紅軟基地
5.4 Dictionaries 字典 Oh9紅軟基地
5.5 循環(huán)技巧 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 標(biāo)準(zhǔn)模塊 Standard Modules Oh9紅軟基地
6.3 dir() 函數(shù) dir() Function Oh9紅軟基地
6.4 包 Packages Oh9紅軟基地
6.4.1 以 * 方式加載包 Importing * From a Package Oh9紅軟基地
6.4.2 內(nèi)置包(Intra-package)參考 Intra-package References Oh9紅軟基地
6.4.3 多重路徑中的包 Packages in Multiple Directories Oh9紅軟基地
7. 輸入和輸出 Input and Output Oh9紅軟基地
7.1 設(shè)計(jì)輸出格式 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 有關(guān)術(shù)語的話題 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 實(shí)例對象 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 補(bǔ)充 Odds and Ends Oh9紅軟基地
9.8 異常也是類 Exceptions Are Classes Too Oh9紅軟基地
9.9 迭代器 Iterators Oh9紅軟基地
9.10 生成器 Generators Oh9紅軟基地
10. 標(biāo)準(zhǔn)庫概覽 Brief Tour of the Standard Library Oh9紅軟基地
10.1 操作系統(tǒng)概覽 Operating System Interface Oh9紅軟基地
10.2 文件通配符 File Wildcards Oh9紅軟基地
10.3 命令行參數(shù) Command Line Arguments Oh9紅軟基地
10.4 錯誤輸出重定向和程序終止 Error Output Redirection and Program Termination Oh9紅軟基地
10.5 字符串正則匹配 String Pattern Matching Oh9紅軟基地
10.6 數(shù)學(xué) Mathematics Oh9紅軟基地
10.7 互聯(lián)網(wǎng)訪問 Internet Access Oh9紅軟基地
10.8 日期和時間 Dates and Times Oh9紅軟基地
10.9 數(shù)據(jù)壓縮 Data Compression Oh9紅軟基地
10.10 性能度量 Performance Measurement Oh9紅軟基地
10.11 質(zhì)量控制 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,內(nèi)容豐富全面,不但是一本手冊,你完全可以把她作為一本Python的入門教程,教你如何使用Python解釋器、流程控制、數(shù)據(jù)結(jié)構(gòu)、模板、輸入和輸出、錯誤和異常、類和標(biāo)準(zhǔn)庫詳解等方面的知識技巧。同時后附的手冊可以方便你的查詢。Oh9紅軟基地

軟件截圖

python2.7中文手冊.chmOh9紅軟基地

軟件下載地址
python2.7中文手冊.chm
軟件推薦
下載排行

精品軟件

熱門關(guān)鍵詞

熱門軟件推薦