Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Good introductory book?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Ken D'Ambrosio  
View profile  
 More options Dec 3 2008, 9:44 am
Newsgroups: comp.lang.python
From: "Ken D'Ambrosio" <ken.dambro...@segway.com>
Date: Wed, 3 Dec 2008 09:44:37 -0500 (EST)
Local: Wed, Dec 3 2008 9:44 am
Subject: Good introductory book?
Hi, all.  I'm getting ready to do some projects in Python, and I've cut my
teeth a little bit, but I've found the "Learning|Programming Python" books
from O'Reilly to be more-or-less useless (to my surprise -- I'm usually an
O'Reilly fan).  I really, really like "Python Essential Reference", but
it's -- well, more of a reference than an intro.  So, an introductory text
that actually assumes some previous programming experience (as opposed to
"Learning Python" which must be the most slowly-paced programming book
ever) would be terrific.

Thanks for your suggestions!

-Ken


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kottiyath  
View profile  
 More options Dec 4 2008, 12:18 am
Newsgroups: comp.lang.python
From: Kottiyath <n.kottiy...@gmail.com>
Date: Wed, 3 Dec 2008 21:18:19 -0800 (PST)
Local: Thurs, Dec 4 2008 12:18 am
Subject: Re: Good introductory book?
On Dec 3, 7:44 pm, "Ken D'Ambrosio" <ken.dambro...@segway.com> wrote:

> Hi, all.  I'm getting ready to do some projects in Python, and I've cut my
> teeth a little bit, but I've found the "Learning|Programming Python" books
> from O'Reilly to be more-or-less useless (to my surprise -- I'm usually an
> O'Reilly fan).  I really, really like "Python Essential Reference", but
> it's -- well, more of a reference than an intro.  So, an introductory text
> that actually assumes some previous programming experience (as opposed to
> "Learning Python" which must be the most slowly-paced programming book
> ever) would be terrific.

> Thanks for your suggestions!

> -Ken

Dive into python is a very good one. It is free too.
http://diveintopython.org/

Try it out.
If you want more of examples of how everything is done, then Python
Cookbook is another one.
You can get many recipes at http://code.activestate.com/recipes/langs/python/
too - the book is just selected recipes from this site.

Regards
K


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Banibrata Dutta  
View profile  
 More options Dec 4 2008, 12:31 am
Newsgroups: comp.lang.python
From: "Banibrata Dutta" <banibrata.du...@gmail.com>
Date: Thu, 4 Dec 2008 11:01:32 +0530
Local: Thurs, Dec 4 2008 12:31 am
Subject: Re: Good introductory book?
1+ for "Dive into Python"... get's you started very fast.

After you are thru with DiP book, it's time to keep google (or ur
favourite search engine) handy... search at the ActivePython site in
the cookbooks, PEP's, mailing-list archive... the answer is generally
found within first 4-5 hits. And then, a good Language Reference is
indipespensible... for which the standard Python docs are pretty good.

--
regards,
Banibrata
http://www.linkedin.com/in/bdutta
http://octapod.wordpress.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
prueba...@latinmail.com  
View profile  
 More options Dec 4 2008, 1:43 pm
Newsgroups: comp.lang.python
From: prueba...@latinmail.com
Date: Thu, 4 Dec 2008 10:43:03 -0800 (PST)
Local: Thurs, Dec 4 2008 1:43 pm
Subject: Re: Good introductory book?
On Dec 3, 9:44 am, "Ken D'Ambrosio" <ken.dambro...@segway.com> wrote:

> Hi, all.  I'm getting ready to do some projects in Python, and I've cut my
> teeth a little bit, but I've found the "Learning|Programming Python" books
> from O'Reilly to be more-or-less useless (to my surprise -- I'm usually an
> O'Reilly fan).  I really, really like "Python Essential Reference", but
> it's -- well, more of a reference than an intro.  So, an introductory text
> that actually assumes some previous programming experience (as opposed to
> "Learning Python" which must be the most slowly-paced programming book
> ever) would be terrific.

> Thanks for your suggestions!

> -Ken

I had the same experience as you had and almost gave up on Python. I
had programmed in other languages before and found the Programming
Python book very tedious to read. I just wanted to learn the syntax
and library to start writing my own stuff. Luckily, I found Guido's 12
page tutorial (http://www.python.org/doc/2.5.2/tut/tut.html) and that
plus the online library reference and Google was everything I ever
needed since then. That said I looked at O'Reilly's "Python in a
Nutshell" and I thought it was really good. It is a mix between
introduction, language and library reference. I should have gotten
that instead of Learning/Programming when I started and I probably
would have been much happier.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott David Daniels  
View profile  
 More options Dec 4 2008, 3:37 pm
Newsgroups: comp.lang.python
From: Scott David Daniels <Scott.Dani...@Acm.Org>
Date: Thu, 04 Dec 2008 12:37:04 -0800
Local: Thurs, Dec 4 2008 3:37 pm
Subject: Re: Good introductory book?

Kottiyath wrote:
> .... If you want more of examples of how everything is done, then Python
> Cookbook is another one.
> You can get many recipes at http://code.activestate.com/recipes/langs/python/
> too - the book is just selected recipes from this site....

Actually, it is significantly more than "just selected recipes" -- the
recipes are picked in subject groups, edits applied, and introductions
to each section are written by someone chosen for their expertise in
that area.  You defintely get more than the list of recipes to examine.

--Scott David Daniels
Scott.Dani...@Acm.Org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mike Driscoll  
View profile  
 More options Dec 4 2008, 3:59 pm
Newsgroups: comp.lang.python
From: Mike Driscoll <kyoso...@gmail.com>
Date: Thu, 4 Dec 2008 12:59:54 -0800 (PST)
Local: Thurs, Dec 4 2008 3:59 pm
Subject: Re: Good introductory book?
On Dec 3, 8:44 am, "Ken D'Ambrosio" <ken.dambro...@segway.com> wrote:

> Hi, all.  I'm getting ready to do some projects in Python, and I've cut my
> teeth a little bit, but I've found the "Learning|Programming Python" books
> from O'Reilly to be more-or-less useless (to my surprise -- I'm usually an
> O'Reilly fan).  I really, really like "Python Essential Reference", but
> it's -- well, more of a reference than an intro.  So, an introductory text
> that actually assumes some previous programming experience (as opposed to
> "Learning Python" which must be the most slowly-paced programming book
> ever) would be terrific.

> Thanks for your suggestions!

> -Ken

I liked "Beginning Python" by Hetland. There's also "Python Power!" by
Telles, which I think was pretty good. Note that there's not much out
for the 3.0 version yet other than the official docs. You'll probably
have to wait until next year before much is really written/published
about that.

Mike


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »