Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #31410 > unrolled thread

Re: Which book is the best?

Started byDemian Brecht <demianbrecht@gmail.com>
First post2012-10-16 08:01 -0700
Last post2012-10-16 08:01 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Which book is the best? Demian Brecht <demianbrecht@gmail.com> - 2012-10-16 08:01 -0700

#31410 — Re: Which book is the best?

FromDemian Brecht <demianbrecht@gmail.com>
Date2012-10-16 08:01 -0700
SubjectRe: Which book is the best?
Message-ID<mailman.2284.1350399678.27098.python-list@python.org>
On 10/15/2012 9:27 PM, 老爷 wrote:
> I have strong c++ development experience.  But now I want to study the
> python to do some windows setting task, such as editing file, changing
> the system setting, doing some network processing.  Please help me which
> book is the best?
> Thanks.
>
>

If you're already a seasoned developer, nothing beats the official 
Python docs (http://python.org/doc/). I find most books to be filled 
with unnecessary narratives. The Python documentation is relatively 
terse and very well organized. As such, it'll get you off to the races 
in no time.

One of the many beautiful things about Python is the interactive help:

$python
 >>> import re
 >>> help(re)

You may also want to take a read through this:

$python
 >>> import this

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web