Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.045 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.00; 'developer,': 0.05; 'processing.': 0.07; 'python': 0.09; 'url:)': 0.13; 'file,': 0.15; 'such,': 0.16; 'terse': 0.16; 'wrote:': 0.17; '>>>': 0.18; 'windows': 0.19; 'import': 0.21; 'thanks.': 0.21; 'this:': 0.23; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'setting': 0.26; 'c++': 0.27; 'books': 0.30; 'filled': 0.30; 'url:python': 0.32; 'received:209.85.160.46': 0.32; 'docs': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'doing': 0.35; 'pm,': 0.35; 'subject:?': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'message-id:@gmail.com': 0.36; 'url:org': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'things': 0.38; 'nothing': 0.38; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'help': 0.40; 'most': 0.61; 'relatively': 0.62; 'experience.': 0.65; 'unnecessary': 0.65; 'study': 0.66; 'beats': 0.84; 'best?': 0.84; 'task,': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=Fx83kRJWlSFncVyKKInoPwW0lLptjFtLDYY66nHg4F0=; b=FkPw45ZgKNVQFvuCZA6trN9rMHJ/WpP2zw31LsLPkEG7dusSyAwLhiOUOOQOjSdQnm rQNKCSNsWBZCzNfRY5yWTEleQ7wFudnmk69hWWthym180i+vxLN/1XvW4HrAEEnsO+Kv dwTxkBbPCq4OD1uAZLB7HGKrKPFoyw2stBg9BTzLzSYUT9jqg7DitNSzWAdQQG/FRJE6 NMB9X1T1DoLd9UcfJLe9FlGQCz+wSutR5ieOu9bkoNqPuuCaxGJEcCE2+E1es7I94F8/ q5u/4hHRXJMMYev+6rfhyfCjETtnox5NoJQsrvHFgk222005WlKX9RvrWDQjsYWP8jWU lbJQ== Date: Tue, 16 Oct 2012 08:01:11 -0700 From: Demian Brecht User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Which book is the best? References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1350399678 news.xs4all.nl 6943 [2001:888:2000:d::a6]:51868 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:31410 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