# 像计算机科学家一样思考python 第二版
作者:[Allen B. Downey](http://greenteapress.com/wp/think-python/)
翻译:[cycleuser](https://github.com/cycleuser)
来源:[ThinkPython-en-cn](https://github.com/cycleuser/ThinkPython-en-cn)
协议:[CC BY-NC 3.0](http://creativecommons.org/licenses/by-nc/3.0/)
- 介绍
- Think Python
- Chapter 0 Preface 前言
- Chapter 1 The way of the program 编程之路
- Chapter 2 Variables, expressions and statements 变量,表达式,语句
- Chapter 3 Functions 函数
- Chapter 4 Case study: interface design 案例学习:交互设计
- Chapter 5 Conditionals and recursion 条件循环
- Chapter 6 Fruitful functions 有返回值的函数
- Chapter 7 Iteration 迭代
- Chapter 8 Strings 字符串
- Chapter 9 Case study: word play 案例学习:单词游戏
- Chapter 10 Lists 列表
- Chapter 11 Dictionaries 字典
- Chapter 12 Tuples 元组
- Chapter 13 Case study: data structure selection 案例学习:数据结构的选择
- Chapter 14 Files 文件
- Chapter 15 Classes and objects 类和对象
- Chapter 16 Classes and functions 类和函数
- Chapter 17 Classes and methods 类和方法
- Chapter 18 Inheritance 继承
- Chapter 19 The Goodies 额外补充