Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Book recommendation

Reply
Thread Tools

Book recommendation

 
 
Madhusudan Singh
Guest
Posts: n/a
 
      11-24-2004
Hi

I am trying to teach myself Python. I have extensive prior programming
experience in Fortran, a little in C/C++, Pascal, etc.

So far, I have been reading online tutorials at www.python.org and a book I
found at the library - Martin Brown's The Complete Reference Python. Is
there a standard classic book to learn from that I could buy ?

Say something like Metcalf and Reid's Fortran 90/95 Explained or Kernighan
and Ritchie's The C Programming Language.


 
Reply With Quote
 
 
 
 
StvB
Guest
Posts: n/a
 
      11-24-2004
There are four books I always recommend:
1. The must-learn-Python-from-this-book book that I recommend is Diving
Into Python by Mark Pilgrim

1a. Then, you think of your own small/medium-size project, and start
writing it.

Now that you have been introduced in a friendly and painfree way,
from Diving Into Python, and you're pumped emotionally
from actually writing Python(1a) , start reading:

2. O'Reilly's Learning Python, to really drive in the
language syntax and features, and have a
comprehensive, well-organized book on every part of Python,
ready to check back to, when you need a lot of help on a particular
topic.
Just read it front and back, when you get the chance.

And these two books are a must, IMO
3. Python in a Nutshell
4. Python Cookbook <-- avail online too, though



"Madhusudan Singh" <spammers-go-> wrote in message
news:...
> Hi
>
> I am trying to teach myself Python. I have extensive prior programming
> experience in Fortran, a little in C/C++, Pascal, etc.
>
> So far, I have been reading online tutorials at www.python.org and a book
> I
> found at the library - Martin Brown's The Complete Reference Python. Is
> there a standard classic book to learn from that I could buy ?
>
> Say something like Metcalf and Reid's Fortran 90/95 Explained or Kernighan
> and Ritchie's The C Programming Language.
>
>



 
Reply With Quote
 
 
 
 
Paul Robson
Guest
Posts: n/a
 
      11-24-2004
On Tue, 23 Nov 2004 22:21:34 -0500, Madhusudan Singh wrote:

> I am trying to teach myself Python. I have extensive prior programming
> experience in Fortran, a little in C/C++, Pascal, etc.
>
> So far, I have been reading online tutorials at www.python.org and a book I
> found at the library - Martin Brown's The Complete Reference Python. Is
> there a standard classic book to learn from that I could buy ?
>
> Say something like Metcalf and Reid's Fortran 90/95 Explained or Kernighan
> and Ritchie's The C Programming Language.


Hi there Madhusudan

There's a couple of brief introductions worth reading ; one is by the
language's creator Guido van Rossum, and the other by a chap called
Swaroop (A byte of Python I think it's called). Both of these are quick
read introduction type things.

A most entertaining and completely backward book is "Dive into Python"
(all these are free downloads but you can buy the latter as a book) which
has the approach where each section starts of with a relatively
complex working chunk of Python code, then pulls it apart and shows you
how all the bits work, and explains the various concepts as you go along.

Once you've done that, if you want some useful bits of coding just to get
the feel of it, try answering some of the Perl or Ruby Quiz-of-the-week
questions (archives are online search for Perl|Ruby quiz of the week).

None of the tasks are more than a page or two of python, but it's a quick
way of getting a feel for the language.

The other thing that's handy to have to hand is the Quick Reference which
is about 20 or so pages and handy for a quick look up.

There are many IDEs and Editors about from the quick and dirty through to
full IDEs (which personally I find too much of a clutter). I personally
like Scite which is the former.

Remember, for i in range(100): print "Murali chucks"

 
Reply With Quote
 
Larry Bates
Guest
Posts: n/a
 
      11-24-2004
If you are running on Windows, "Python Programming on Win32"
is a must buy/read.

I also liked "Python Bible" a lot.

Larry Bates

Madhusudan Singh wrote:
> Hi
>
> I am trying to teach myself Python. I have extensive prior programming
> experience in Fortran, a little in C/C++, Pascal, etc.
>
> So far, I have been reading online tutorials at www.python.org and a book I
> found at the library - Martin Brown's The Complete Reference Python. Is
> there a standard classic book to learn from that I could buy ?
>
> Say something like Metcalf and Reid's Fortran 90/95 Explained or Kernighan
> and Ritchie's The C Programming Language.
>
>

 
Reply With Quote
 
Madhusudan Singh
Guest
Posts: n/a
 
      11-24-2004
Paul Robson wrote:

> On Tue, 23 Nov 2004 22:21:34 -0500, Madhusudan Singh wrote:
>
>> I am trying to teach myself Python. I have extensive prior programming
>> experience in Fortran, a little in C/C++, Pascal, etc.
>>
>> So far, I have been reading online tutorials at www.python.org and a book
>> I found at the library - Martin Brown's The Complete Reference Python. Is
>> there a standard classic book to learn from that I could buy ?
>>
>> Say something like Metcalf and Reid's Fortran 90/95 Explained or
>> Kernighan and Ritchie's The C Programming Language.

>
> Hi there Madhusudan
>


Hi

> There's a couple of brief introductions worth reading ; one is by the
> language's creator Guido van Rossum, and the other by a chap called
> Swaroop (A byte of Python I think it's called). Both of these are quick
> read introduction type things.
>
> A most entertaining and completely backward book is "Dive into Python"
> (all these are free downloads but you can buy the latter as a book) which
> has the approach where each section starts of with a relatively
> complex working chunk of Python code, then pulls it apart and shows you
> how all the bits work, and explains the various concepts as you go along.
>


"Dive into Python" seems to be the favorite so far in this NG.

> Once you've done that, if you want some useful bits of coding just to get
> the feel of it, try answering some of the Perl or Ruby Quiz-of-the-week
> questions (archives are online search for Perl|Ruby quiz of the week).


perl-qotw was interesting and language agnostic (If perl can do something,
so should Python - not that I know much perl). I will look into it on a
regular basis when I get my bearings.

>
> None of the tasks are more than a page or two of python, but it's a quick
> way of getting a feel for the language.
>
> The other thing that's handy to have to hand is the Quick Reference which
> is about 20 or so pages and handy for a quick look up.


Yep.

>
> There are many IDEs and Editors about from the quick and dirty through to
> full IDEs (which personally I find too much of a clutter). I personally
> like Scite which is the former.


I use emacs for everything except authoring webpages. An operating system
disguised as an editor

>
> Remember, for i in range(100): print "Murali chucks"


The above is syntactically correct only if you did not install
python-larry
 
Reply With Quote
 
Madhusudan Singh
Guest
Posts: n/a
 
      11-24-2004
Larry Bates wrote:

> If you are running on Windows, "Python Programming on Win32"
> is a must buy/read.
>


Thanks for your response. Fortunately, I inhabit a windows free world

> I also liked "Python Bible" a lot.


I will look into it.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
MCSE/MCSA book recommendation? Andy MCSE 12 09-10-2004 12:55 PM
70-215 study book recommendation Paul Howes MCSE 19 02-24-2004 11:56 AM
book recommendation for 70-217 Steve MCSE 2 01-31-2004 09:28 AM
MCSM Book recommendation Chris Kennedy MCSD 0 01-19-2004 03:20 PM
Book recommendation - Application Architecture! Stefan Hellberg ASP .Net 1 07-09-2003 02:20 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57