vote up 15 vote down star
15

I am a fairly experienced programmer, mostly C, C++, Java and C#... Can you recommend any Python books that would help me to get the most out of my existing experience? Many Python books I have read good reviews about seem to be aimed at the novice programmer - I'd like to find something that "gets right down to business". There are many good resources on the web of course but I would like to have a real book that possibly goes a bit into detail about specific concepts, techniques and patterns that are specific to python.

Related questions:

flag

added related questions – J.F. Sebastian Jan 19 at 15:00
recommended to close. This question, and the corresponding answers, match exactly this post: stackoverflow.com/questions/412482/… – Triptych Jan 19 at 15:12
It's similar but I was specifically looking for a book and something that aims to cover conceptual aspects of the language. – VoidPointer Jan 19 at 15:28
you're looking for a python book aimed at experienced programmers. Same question – Triptych Jan 19 at 15:35
1  
The question that you referenced specifically asks for online resources. – VoidPointer Jan 19 at 15:41
show 1 more comment

14 Answers

vote up 11 vote down check

http://diveintopython.org/ is a bit dated but still useful.

link|flag
..and you can't beat the price. I recommend it as well, very nice book and fast paced. – rodbv Jan 19 at 14:39
1  
Note that Dive Into Python 3 is in the works. diveintopython3.org – oylenshpeegul Jan 29 at 2:51
vote up 0 vote down

One think I'd also like to mention here that helped me quite a bit in addition to the other great resources folks have provided here is "Thinking in Python" by Bruce Eckel. It is available at http://www.mindview.net/Books/Python/ThinkingInPython.html

link|flag
vote up 2 vote down

People still read books?

I'd recommend going through a tutorial then when you finish or get tired of it, use stackoverflow and google to resolve questions you have about the language as they come up.

Here's the official tutorial:

http://docs.python.org/tutorial/index.html

And official documentation:

http://docs.python.org/

link|flag
Definitely +1 on the official Python tutorial. It was written originally by Python's creator himself and will probably give you just what you need and you'll be able to supplement that well with a combination of the official docs (very comprehensive) and Stack Overflow. – Wayne Koorts Jan 20 at 1:26
vote up 2 vote down

Coming from Java (and occasional Bash scripting), and learning how to do basic stuff in Python a while back, I had two books available to me at work:

  1. Python in a Nutshell (Bought at my suggestion, because after comparing Python books online I thought this would be just what I needed)
  2. Learning Python (Linking to latest edition, but I think we had the 1st ed)

Unexpectedly, I found myself more frequently using Learning Python, even though it seems much more like it's "aimed at the novice programmer"; something I was not, really. I just noticed I found the basic syntax stuff and examples I needed faster in that book.

Just my 2 cents about these 2 books. :) It may well be that Programming Python or some such is what you need.

link|flag
vote up 3 vote down

I sometimes like to graze the Python Cookbook over at ActiveState. It stirs my brain up and makes me think of things in ways I normally wouldn't. Recipes by certain contributors (e.g. Raymond Hettinger) are particularly instructive to study.

link|flag
vote up 2 vote down

I like Beazley's Python Essential Reference a lot. I have the 3rd edition, but apparently the 4th edition will be out soon.

link|flag
vote up 3 vote down

You could take a look at the fresh Expert_Python_Programming or Programming_Python does a very good job.

[Edit]: I am not sure why it doesn't show up the links. :|
[edit2] fixed -you had an extra "!" somehow

link|flag
Expert Python Programming is a horrible book that has only received favorable attention due to the publisher spamming virtually every tech blog and tech site with fake blog posts. It's disgusting. Do not but it! – Tristan Aug 27 at 16:57
vote up 1 vote down

I guess what you are looking for is more a syntaxic book that will tell you how to do something you already understand. The best I can recommand for this is a small tutorial on the internet. Something like Advanced python will get you to the point and if you have further question, you just have to read the doc.

link|flag
vote up 2 vote down

A lot of people recommend Core Python. I haven't ready many other Python books to compare it to, but I think it's well written.

The fellow who hosts the Python 411 podcast says if he were stranded on a desert island with only one Python book, it would be Core Python.

link|flag
I don't know, I have this book and first impressions were not good. One of the first examples had some blatant syntax errors which I just happened to be able to recognise. Also I felt it was very chunky (sheer volume), yet quite shallow at the same time. – Wayne Koorts Jan 20 at 1:25
vote up 3 vote down

I'm not much for fancy book lernin', so I usually stick to the tutorials off the Python website.

Start with the python http://docs.python.org/tutorial/, get as far as you can go without boring yourself, and then just use the library (http://docs.python.org/library/) for reference.

Good luck learning - it's a fantastic language. It's basically pseudocode that's not so pseudo!

link|flag
The problem with this approach sometimes is that one tends to stick to established patterns and techniques while there might be other ways more suited in the new language. – VoidPointer Jan 19 at 14:58
True, although you'll find with Python the 'Pythonic' approach is held as the one true way for the most part. The tutorial is very comprehensive too, so I suggest you try it out. – Eddie Parker Jan 19 at 19:56
If you get tired of the tutorial, try doing things your self, then when you have questions you have stackoverflow and google to help. – monkut Jan 21 at 1:36
vote up 1 vote down

Always been a fan of A Byte of Python - made for both new and experienced programmers.

link|flag
vote up 1 vote down

Starting with python 3 then Programming in Python 3: A Complete Introduction to the Python Language together with Expert python when you have to start delivering apps (packaging installers libs etc)

O'reilly Programming python (3ed) is good but very long and not sure when it is a tutorial and when it is a reference.

link|flag
Programming Python is a long book, but it's well divided into areas, so if you don't want to learn GUI Programming and prefer Network programming, you don't have to. Or viceversa. – Adriano Varoli Piazza Jan 20 at 0:23
vote up 7 vote down

I'll never tire of recommending Code Like a Pythonista: Idiomatic Python.

It is not a book but for experienced programmer it contains more than most books.

link|flag
While this is not a book, the approach he takes is great! – VoidPointer Jan 19 at 16:55
Wow, thanks! I've been looking for something exactly like this. – Bob Somers Jan 19 at 20:33
vote up 6 vote down

Python in a Nutshell is a great book too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.