Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a reasonably skilled programmer, and I'm interested in branching out into some new languages -- python, specifically -- but frankly I do NOT want to go through a tutorial that assumes I know nothing about programming. I want a tutorial -- again, preferably for python -- that assumes I'm just unfamiliar with the language itself and describes the ways I can use the language to solve problems.

Does such a beast exist? I mean, other than the Python wiki?

share|improve this question
I'll be watching this hoping to find one. IMO, stay away from Mark Lutz's "Programming Python"! It's probably exactly what you're saying you don't want. I found it so irritating I had to stop reading it and gave it away. – dwc May 24 '09 at 17:16
Duplicate of stackoverflow.com/questions/457757/… – S.Lott May 24 '09 at 19:59
@S. Lott: Not quite; I was interested in general resources, not books in particular. Web sites, FAQs, screencasts... I guess I could have made that more clear. – Chris R May 24 '09 at 23:35

7 Answers

up vote 25 down vote accepted

Yes, you should look at Dive Into Python:

Dive Into Python is a Python book for experienced programmers. You can buy a printed copy, read it online, or download it in a variety of formats. It is also available in multiple languages.

share|improve this answer
+1 to Dive into Python. It's exactly an introduction to python for programmers, and it goes fast through the language. – user97370 May 24 '09 at 17:13
+1 for Dive Into. I haven't read it beginning to end, but it's one of the first places I turn to when I want to see something explained well. – dwc May 24 '09 at 17:17
+1 for Dive into Python. – markuz May 24 '09 at 17:49
Also +1, but do be aware that I think the book is now slightly out-of-date in some areas. I think he doesn't cover new-style classes, and still shows subclassing from UserDict, whereas nowadays you'd just subclass dict directly. Not a big deal; still highly recommended. – Carl Meyer May 25 '09 at 3:07
Dive into Python is good, but is restricted to Python 2.3. I really recommend first checking the links in my answer, which will provide you with more quickly with a more up-to-date knowledge of Python. – EOL May 25 '09 at 7:20
show 2 more comments

Gosh, this is a popular question on SO. Check out these previous discussions:

32 answers here to What did you use to teach yourself python? (question is removed).

13 answers to How to Learn Python

13 more for What is the best python book for experienced programmers?

and 20 for Best online resource to learn Python?

And you can find even more by typing "Python tutorial" in the SO search box.

share|improve this answer
Great to see so many people want to learn Python! I love it! – Tom Leys May 25 '09 at 3:34

I recently wrote a paper for Linux Magazine (France) on learning Python, and I had to ask myself the same question and do a thorough research on this. My recommendation is to check the sources below in the following order:

  1. Instant Python
  2. Learn Python in 10 minutes
  3. The official tutorial (to be skimmed through)
  4. Building Skills in Python: A Programmer's Introduction to Python, by Stack Overflow contributor S. Lott
  5. Dive into Python is quite good too, but is limited to the now quite old Python 2.3.
share|improve this answer
The link for Building Skills in Python: A Programmer's Introduction to Python, by Stack Overflow contributor S. Lott, seems to be non-functional. – Craig McQueen May 25 '09 at 0:53
@ Craig: thanks! I corrected the link, which had changed in the last few months. – EOL May 25 '09 at 7:17
Strange: the link to S. Lott's book sometimes fails... Here is an address that (sometimes) currently works: homepage.mac.com/s_lott/books/python/htmlchunks/index.html – EOL May 26 '09 at 12:58

I will also recomment you to read the python cookbook, a really nice book full of recipes that will help you on several tasks.

share|improve this answer

I would suggest the following Books, these are all for Python 2

1). "A Byte of Python"

2). "Python 101 -- Introduction to Python"

3). "Building Skills in Python --- A Programmer's Introduction to Python"

4). "Python 201 -- (Slightly) Advanced Python Topics"

5). "How to Think Like a Computer Scientist ---Learning with Python 2nd Edition"

6). "Python Programming"

share|improve this answer

If you intend to learn Python 3 instead of Python 2.x (the difference is not large), you should take a look at Dive Into Python 3. It's currently being written (by Mark Pilgrim) and is around 50% complete.

share|improve this answer

Speaking about books, I went from zero to "workable" very quickly with the book "Learning Python", 4th edition, from O'Reilly. Advantages:

  • Goes to what matters without repeating the obvious;
  • Contains jokes and nerd-friendly silly stuff;
  • Is broad and deep enough without being too much of it;
  • The author (Mark Lutz) obviously knows what he's writing about, and why.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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