I am taking a class that requires Python. We will review the language in class next week, and I am a quick study on new languages, but I was wondering if there are any really great Python books I can grab while I am struggling through the basics of setting up my IDE, server environment and all those other "gotchas" that come with a new programming language. Suggestions?
|
locked by Dori Nov 14 '11 at 10:52
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
closed as off topic by Robert Harvey♦ Nov 8 '11 at 16:11
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
I loved Dive Into Python, especially if you're a quick study. The beginning basics are all covered (and may move slowly for you), but the latter few chapters are great learning tools. Plus, Pilgrim is a pretty good writer. |
|||||
|
|
I expect that Learning Python is useful, and quick to read. |
|||||||||||
|
|
There are quite a few good books online. These have a broad scope, similar to O'Reilly's "Learning Python":
Python.org maintains two lists of for learning python, depending on your level of programming expertise: I highly recommend "Python Essential Reference" by David Beazley. You might find this sufficient if you're an experienced programmer and want a concise and comprehensive overview of the language. If you're a novice programmer this probably won't provide enough hand-holding. While I learned Python from other books, this is—by far—the most useful python book I own. Some notes:
Note: I originally posted the same/similar answer to: Concise python book recommendation I was asked to put a copy of my answer here. |
||||
|
|
|
Two good online-books, that also describes the basics of the environment is diveintopython.net and the "official" tutorial. |
||||
|
|
|
Since you're already familiar with other languages and a quick study, I'd recommend Python in a Nutshell by Alex Martelli, very concise and also useful later on for reference. |
|||||
|
|
I found Learning Python really good. It's pretty long (>700 pages) but extremely readable and you can rip through it very quickly given you're a quick study :-) |
|||
|
|
|
Many people have suggested Dive Into Python, which is probably the best Python book out there for someone who's already a good programmer. However, if you're new to programming, the best book is probably "How to Think Like a Computer Scientist: Learning With Python" (http://openbookproject.net/thinkCSpy/index.xhtml) |
|||||
|
|
I think that Think Python is very good for first-time programmers. Pleasant writing style too.. |
|||
|
|
|
This is good, it's a very easy read and the excercises can be completed with only a crayon.
|
|||||||
|
|
I have also been using Programming in Python 3 by Mark Summerfield and find it very good. |
|||
|
|
Learning Python is how I learned the language. It's a quick read, and very well organized around fundamental concepts. |
|||
|
|
|
I have both Learning Python & Programming Python and I almost always go to the Pocket Reference first. |
||||
|
|
|
I'll second Daniel's recommendation of Python in a Nutshell. If you're quick to pick up new languages, it's probably exactly what you're looking for. There's a nice overview of how the language works, and then a discussion of most of the standard library. It's concise and clear, and doesn't assume that you don't know basic programming things already. |
|||
|
|
|
I'm a big fan of Core Python |
|||
|
|
|
I quite enjoyed reading H.Deitel - Python - How to Program. It's very long but basics of Python are covered in first 300-400 pages. It's a nice book for beginners. |
|||
|
|
|
It may not be as applicable, but I just cracked open Programming in Python 3 by Mark Summerfield and so far it seems pretty good, although it is focused on Python 3, so if you're planning on learning something like Django, which hasn't made the jump to Python 3 and likely won't for some time, this book might not be the best. Additionally, even though Python 3.0 has been out for a little while now, I can almost guarantee your course is using Python 2.x. Academia has a tendency to trail behind. I had a C++ recitation professor who I swear wasn't aware that C++ has been updated since 1985. |
|||
|
|
|
I learned most of my initial pythonese from this super-handy quick reference: |
|||
|
|
I learned more from the python cookbook than any other python book. |
|||
|
|
|
Dive into Python for a fast jump start, Learning Python (O'Reilly) is better for the long complete journey. Just my $0.02. |
|||
|
|
|
I tried learning from Programming Python and I didn't like it. I'm going to give Python in a Nutshell a try as per suggestions below. |
||||
|
|
|
I recommended this ebook A Byte of Python |
|||
|
|
|
I'm currently reading Head First Python which came out in November, 2010. I didn't read Dive Into Python but I read Dive Into HTML5 by the same writer and It was well written. |
||||
|
|
|
Dive Into Python is an excellent book geared toward programmers wanting to pick up Python. The best part is that it's freely available online. I started learning a little Python a few months ago and I've worked through about half of the book. It's a very comprehensive tool that's good for learning the language and also for a reference down the road. Edit: Kamens is a faster typer than I am. |
||||
|
|
Dive Into Python is a good choice, but I also recommend Python Visual Quickstart Guide For someone that knows how to program and wants to get the 80% of the basics of the language, it's a good deal. And it retails at $20. It's certainly not the last thing I'd read on python, but it's a good first one. |
|||
|
|
|
I have to second (third? fourth?) Dive Into Python. It's just great for quick reference and reading. As an added suggestion, read some code! That always helps. |
||||
|
|

