From 2fba2f221892b5f337b51b2a4c485b29118e4252 Mon Sep 17 00:00:00 2001 From: Estevan Pequeno Date: Thu, 29 Dec 2011 19:53:06 -0600 Subject: [PATCH] Update docs/intro/learning.rst --- docs/intro/learning.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/intro/learning.rst b/docs/intro/learning.rst index c2a86195d..53355c3b7 100644 --- a/docs/intro/learning.rst +++ b/docs/intro/learning.rst @@ -36,6 +36,22 @@ experience programming in another language. `Dive Into Python 3 `_ +Think Python: How to Think Like a Computer Scientist +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Think Python attempts to give an introduction to basic concepts in computer science through the +use of the python language. The focus was to create a book with plenty of exercises, minimal jargon and +a section in each chapter devoted to the subject of debugging. + +While exploring the various features available in the python language the author weaves in various design +patterns and best practices. + +The book also inclused several case studies which have the reader explore the topics discussed in the book +in greater detail by applying those topics to real-world examples. Case studies include assingments in GUI +and Markov Analysis. + + `Think Python `_ + Advanced --------