From 6c6e5f4c848257a493548fd5c68daf7690e046c1 Mon Sep 17 00:00:00 2001 From: Vishal Sodani Date: Mon, 14 Apr 2014 11:03:58 +0530 Subject: [PATCH] Add book - Writing Idiomatic Python --- docs/intro/learning.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/intro/learning.rst b/docs/intro/learning.rst index 9a1a3b4..790cbf7 100644 --- a/docs/intro/learning.rst +++ b/docs/intro/learning.rst @@ -222,3 +222,10 @@ core language, with descriptions of commonly used modules and toolkits. It cover Python 3 and 2.6 versions. `Python Pocket Reference `_ + +Writing Idiomatic Python 2.7.3 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +"Writing Idiomatic Python", written by Jeff Knupp, contains the most common and important Python idioms in a format that maximizes identification and understanding. Each idiom is presented as a recommendation to write some commonly used piece of code. It is followed by an explanation of why the idiom is important. It also contains two code samples: the "Harmful" way to write it and the "Idiomatic" way + +