"《 Python入門指南》(Python Tutorial)(Guido Van Rossum / Fred L. Drake, Jr (editor))文字版[PDF]"介紹
中文名: Python入門指南
原名: Python Tutorial
作者: Guido Van Rossum / Fred L. Drake, Jr (editor)
譯者: 劉鑫 尹偉銘 Kernel1983
資源格式: PDF
版本: 文字版
出版社: Iuniverse Inc
書號: 9781583483756
地區: 美國
語言: 簡體中文,英文
簡介:
圖書簡介:最權威的 Python 教程,由 Python 作者 Guido van Rossum 主筆,有少許學院味道。中文電子版由劉鑫、李夢夷、Kernel1983 翻譯。
文件內容為中英雙語。
作者簡介:Guido van Rossum是Python編程語言的創始人,現在就職於Google公司,但在他的大部分時間裡他都還在為Python語言的發展而努力。自1989年Guido在ABC與語言的基礎上創建了Python語言,目前這門語言不僅得到其他開發社區的認可,比如JPython和IronPython的廣泛應用,在教育和科學技術領域也起到舉足輕重的作用。
內容截圖:
目錄:
Whetting Your Appetite 開胃菜
Using the Python Interpreter 使用Python解釋器
Invoking the Interpreter 調用解釋器
The Interpreter and Its Environment 解釋器及其環境
More Control Flow Tools 深入流程控制
if Statements
for Statements for 語句
The range() Function range()函數
break and continue Statements, and else Clauses on Loops break 和 continue 語句, 以及 循環中的 else 子句
pass Statements pass 語句
Defining Functions 定義函數
More on Defining Functions 深入函數定義
Data Structures 數據結構
More on Lists 深入鏈表
The del statement del語句
Tuples and Sequences 元組和序列
Sets 集合
Dictionaries 字典
Looping Techniques 循環技術
More on Conditions 深入條件控制
Comparing Sequences and Other Types 不同序列類型的比較
Modules 模塊
……