中文名: 深入Python
原名: Dive Into Python
作者: Mark Pilgrim
譯者: 啄木鳥/CPUG obp 團隊
資源格式: PDF
版本: 文字版
出版社: Apress
書號: 9781590593561
發行時間: 2004年
地區: 美國
語言: 簡體中文
簡介:
內容介紹:Dive Into Python 是為有經驗的程序員編寫的一本 Python 書。
本譯本由 Zoom.Quiet 負責項目管理。由 啄木鳥/CPUG 的 obp 團隊完成。
英文原版:2004 年 5 月 20 日
譯文版:2005 年 12 月—2006 年 4 月
審校:2007 年 6 月—9 月
zip文件中為本書附帶的代碼。
作者介紹: Mark Pilgrim is an accessibility architect in the IBM Emerging Technologies Group. He is the author of several technical books,
including Dive Into Accessibility, a free online tutorial on web accessibility. He lives in North Carolina with his wife and newborn son, and spends his copious free time sunbathing, skydiving, and
reading Immanuel Kant's Critique of Pure Reason.
內容截圖: 目錄:
Chapter 1. 安裝 Python
1.1. 哪一種 Python 適合您?
1.2. Windows 上的 Python
1.3. Mac OS X 上的 Python
1.4. Mac OS 9 上的 Python
1.5. RedHat Linux 上的 Python
1.6. Debian GNU/Linux 上的 Python
1.7. 從源代碼安裝 Python
1.8. 使用 Python 的交互 Shell
1.9. 小結
Chapter 2. 第一個 Python 程序
2.1. 概覽
2.2. 函數聲明
2.2.1. Python 和其他編程語言數據類型的比較
2.3. 文檔化函數
2.4. 萬物皆對象
2.4.1. 模塊導入的搜索路
2.4.2. 何謂對象?
2.5. 代碼縮進
2.6. 測試模塊
……