Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!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.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python.': 0.04; 'subject:Python': 0.05; 'targets': 0.07; 'python': 0.08; 'am,': 0.12; 'sections': 0.13; 'large,': 0.15; '2.6,': 0.16; 'cc:addr :python-list': 0.16; 'received:74.125.82.44': 0.16; 'received :mail-ww0-f44.google.com': 0.16; 'language': 0.17; 'wrote:': 0.18; 'cc:no real name:2**0': 0.20; 'written': 0.20; 'cheers,': 0.20; 'dec': 0.22; 'header:In-Reply-To:1': 0.22; 'cc:2**0': 0.24; 'expect': 0.26; 'coding': 0.28; 'message-id:@mail.gmail.com': 0.28; 'toward': 0.29; 'skip:b 20': 0.29; 'cc:addr:python.org': 0.29; 'least': 0.30; 'does': 0.32; 'tue,': 0.32; 'pretty': 0.32; 'possible,': 0.34; '2.4': 0.34; 'changes.': 0.34; 'received:74.125.82': 0.35; 'something': 0.35; 'but': 0.37; 'received:74.125': 0.37; 'received:google.com': 0.37; 'think': 0.37; 'not,': 0.37; 'should': 0.39; 'introduced': 0.39; '2011': 0.61; 'matter': 0.61; '"how': 0.80; '11:31': 0.84; 'programming?': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=voY3Wt1m6dWVlLXUz/UXIBcnjfnGi2elczYhB3M8PkA=; b=ufASLTk6+ItbwNVgY89ecqU47kVGCtUS8cJHvHvcoo7hcahcVc8EA3nB62dide744v /pwM0StQ3ORizKIcQJ01DFCc6fVlfn9XSSDOxfKr/h4yAzOazSx8YAnSwB5SN4XVBA1t 5bSYOo4u7WeJlw+NlF59oAZw/6GvChmbsFvGM= MIME-Version: 1.0 In-Reply-To: <4ef0d49c$0$12187$4d5ecec7@news.xsusenet.com> References: <4ef0d49c$0$12187$4d5ecec7@news.xsusenet.com> From: Ian Kelly Date: Tue, 20 Dec 2011 12:47:29 -0700 Subject: Re: Learning Python 2.4 To: kimma Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1324410481 news.xs4all.nl 6958 [2001:888:2000:d::a6]:59380 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:17605 On Tue, Dec 20, 2011 at 11:31 AM, kimma wrote: > Hi there, > > I am about to learn python with "how to think like a computer scientist". > This book is just available for python 2.4. Does it matter for programming? > > Greetz Python 2.4 is pretty old at this point. A lot has been added to the language since then, and Python 3 introduced a number of large, backward-incompatible changes. I don't have any specific book recommendations, but you should look for a book written for Python 3 if possible, since that is the future of Python. If not, then look for something that at least targets Python 2.6, which I would expect to include sections about coding with an eye toward Python 3 compatibility. Cheers, Ian