python學(xué)習(xí)手冊 第5版 pdf
中文完整版- 軟件大?。?span itemprop="fileSize">13.30 MB
- 軟件語言:中文
- 軟件類型:國產(chǎn)軟件 / 程序開發(fā)
- 軟件授權(quán): 免費(fèi)軟件
- 更新時間:2017-12-13 14:29:44
- 軟件等級:
- 軟件廠商: -
- 應(yīng)用平臺:WinXP, Win7, Win8, Win10
- 軟件官網(wǎng): 暫無
相關(guān)軟件
Python編程獅手機(jī)版v1.7.10安卓版
42.11 MB/中文/10.0
扇貝編程appv2.8.600安卓版
47.82 MB/中文/10.0
python利器appv4.0.4 安卓官方版
17.78 MB/中文/6.0
python學(xué)習(xí)手冊 第4版
0 Bytes/中文/5.0
python 3.6.1 64位官方安裝包
29.60 MB/中文/6.0
軟件介紹人氣軟件精品推薦相關(guān)文章網(wǎng)友評論下載地址
學(xué)習(xí)Python第5版內(nèi)含詳細(xì)講解python開發(fā)設(shè)計、python編程、Internet腳本等知識內(nèi)容,是你學(xué)習(xí)Python必備書籍,喜歡的朋友快來IT貓撲下載吧!
python學(xué)習(xí)手冊(第5版)介紹
本書是學(xué)習(xí)Python編程語言的入門書籍。Python是一種很流行的開源編程語言,可以在各種領(lǐng)域中用于編寫?yīng)毩⒌某绦蚝湍_本。Python免費(fèi)、可移植、功能強(qiáng)大,而且使用起來相當(dāng)容易。來自軟件產(chǎn)業(yè)各個角落的程序員都已經(jīng)發(fā)現(xiàn),Python對于開發(fā)者效率和軟件質(zhì)量的關(guān)注,這無論在大項(xiàng)目還是小項(xiàng)目中都是一個戰(zhàn)略性的優(yōu)點(diǎn)。
無論你是編程初學(xué)者,還是專業(yè)開發(fā)人員,本書的目標(biāo)是讓你快速掌握核心Python語言基礎(chǔ)。閱讀本書后,你會對Python有足夠的了解,能夠?qū)⑵鋺?yīng)用于所從事的領(lǐng)域中。
本書設(shè)計成一本教程,主要關(guān)注核心Python語言本身,而不是其特定的應(yīng)用程序。因此,它作為一個兩卷本的合集中的第一本:
《Learning Python》,也就是這本書,介紹Python本身。
《Programming Python》,另外一本書,介紹在學(xué)習(xí)了Python之后可以用它來做什么。
也就是說,《Programming Python》這本基于應(yīng)用的圖書選擇了本書所省略的話題,介紹了Python在Web、圖形用戶界面(GUI)和數(shù)據(jù)庫這樣的常用領(lǐng)域的作用。此外,《Python Pocket Reference》一書提供了本書所沒有的額外參考資料,可將它作為本書的補(bǔ)充。
劃之初就力求向讀者展示比眾多程序員初次學(xué)習(xí)這門語言的時候更深層次的話題。并且,本書基于一個帶有測試和練習(xí)的3天的Python培訓(xùn)課程,所以可以作為該語言的一個自學(xué)教程。
python第5版目錄
1.A PythonQ&ASession?
? ? Why D0 People Use Python?
? ? Software Quality
? ? Developer Productivity
? ? Is Python a“Scripting Language”?
? ? OK.but What’S the Downside?
? ? Who Uses Python Today?
? ? What Can I Do with Python?
? ? Systems Programming
? ? GUIs
? ? Internet Scripting
? ? Component Integration
? ? Database Programming
? ? Rapid Prototyping
? ? Numeric and Scientific Programming
? ? And More:Gaming,Images,Data Mining,Robots,Excel?
? ? How Is Python Developed and Supported?
? ? 0pen Source Tradeoffs
? ? What Are Python’S Technical Strengths?
? ? It’S Object—Oriented and Functional
? ? It’S Free
? ? It’S Portable
? ? It’S Powerful
? ? It’S Mixable
? ? It’S Relatively Easy to Use
? ? It's Relatively Easy tO Learn
? ? It’S Named After Monty Python
? ? How Does Python Stack Up to Language X?
? ? Chapter Summary
? ? Test Your Knowledge:Quiz
? ? Test Your Knowledge:Answers
?2.HowPython RunsPrograms?
? ? Introducing the Python Interpreter
? ? Program Execution
? ? The Programmer’S View
? ? Python’S View
? ? Execution Model Variations
? ? Python Implementation Alternatives
? ? Execution Optimization Tools
? ? Frozen Binaries
? ? Future Possibilities7
? ? Chapter Summary
? ? Test Your Knowledge:Quiz
? ? Test Your Knowledge:Answers
?3.HowYou Run Programs?
? ? The Interactive Prompt
? ? Starting an Interactive Session
? ? The System Path
? ? New Windows 0ptions in 3.3:PATH.Launcher
? ? Where to Run:Code Directories
? ? What NOt tO Type:Prompts and Comments
? ? Running Code Interactively
? ? Why the Interactive Prompt?
? ? Usage Notes:The Interactive Prompt
? ? System Command Lines and Files
? ? AFirst Script
? ? Running Files with Command Lines
? ? Command.Line Usage Variations
? ? Usage Notes:Command Lines and Files
? ? Unix—Style Executable Scripts:#!
? ? Unix Script Basics
? ? The Unix env Lookup Trick
? ? The Python 3.3 Windows Launcher:#!Comes to Windows
? ? Clicking File Icons
? ? Icon—Click Basics
? ? Clicking Icons on Windows
? ? The input Trick on Windows
? ? Other Icon.Click Limitations
? ? Module Imports and Reloads
? ? Import and Reload Basics
? ? The Grander Module Story:Attributes
? ? Usage Notes:import and reload
? ? Using exec to Run Module Files
? ? The IDLE User Interface
? ? IDLE Startup Details
? ? IDLE Basic Usage
? ? IDLE Usability Features
? ? Advanced IDLE Tools
? ? Usage Notes:IDLE
? ? Other IDEs
? ? Other Launch Options
? ? Embedding Calls
? ? Frozen Binary Executables
? ? Text Editor Launch Options
? ? Still Other Launch 0ptions
? ? Future Possibilities?
? ? Which 0ption Should I Use?
? ? Chapter Summary
? ? Test Your Knowledge:Quiz
? ? Test Your Knowledge:Answers
? ? Test Your Knowledge:Part I Exercises
Part II.Types and Operations
Part III.Statements and Syntax
Part IV.Functions and Generators
Part V.Modules and Packages
Part VI.Classes and OOP
Part VII.Exceptions and Tools
Part VIII.Advanced Topics
Part IX.Appendixes
更多>> 軟件截圖
推薦應(yīng)用
其他版本下載
精品推薦 python
- 更多 (114個) >> python Python是一門易讀、易維護(hù),并且被大量用戶所歡迎的、用途廣泛的計算機(jī)程序設(shè)計語言。在國外用Python做科學(xué)計算的研究機(jī)構(gòu)非常的多,麻省理工學(xué)院的計算機(jī)科學(xué)及編程導(dǎo)論、卡耐基梅隆大學(xué)的編程基礎(chǔ)等一些知名的大學(xué)都開始采用Python來教授程序設(shè)計課程,主要是因?yàn)镻ython語言
扇貝編程python最新版 54.78 MB
/中文/10.0python編程獅手機(jī)版 42.20 MB
/中文/10.0慕知python教學(xué)app(python精品課) 39.38 MB
/中文/10.0在線學(xué)python軟件 17.63 MB
/中文/10.0python編程教程app 48.94 MB
//10.0pythonista手機(jī)版教學(xué) 39.38 MB
/中文/10.0Python編程獅手機(jī)版 42.11 MB
/中文/10.0Python語言學(xué)習(xí)軟件 12.21 MB
/中文/10.0
相關(guān)文章
下載地址
python學(xué)習(xí)手冊 第5版 pdf 中文完整版
查看所有評論>> 網(wǎng)友評論
- 第 2 樓 北京歌華寬帶 網(wǎng)友 發(fā)表于: 2023-09-08 10:58:13
- 系統(tǒng)分析師教程張友生pdf高清版2010
- 第 1 樓 北京歌華寬帶 網(wǎng)友 發(fā)表于: 2023-09-08 10:58:12
- 系統(tǒng)分析師教程張友生pdf高清版2010
更多>> 猜你喜歡
- msp430f5529官方教程中文版
- python金融大數(shù)據(jù)分析 電子書
- python數(shù)據(jù)科學(xué)手冊
- python學(xué)習(xí)手冊 第4版
- python數(shù)據(jù)分析與挖掘?qū)崙?zhàn)
- 精通python爬蟲框架scrapy epub+azw3+mobi
- arm體系結(jié)構(gòu)與編程最新版
- node.js權(quán)威指南完整版
- Redhat LINUX 9從入門到精通
- android studio應(yīng)用開發(fā)實(shí)戰(zhàn)詳解 pdf
- JAVA基礎(chǔ)知識核心技術(shù)卷2原書第8版
- 精通正則表達(dá)式第三版