Are there books like Learning Python the Hard Way where you have to write out code along the book?
I find a lot of books just 'talk at you'. The Head First series of books are supposed to be good at this but I didn't like their Python series.

Recommendations anyone?

Update I have zero programming background. Been messing around with Python last couple of weeks.

link|improve this question

You have quite the SO profile for someone with no programming background. – Mike Jan 26 '11 at 2:42
They are mostly for asking a whole lot of newbie questions in SQL. – super9 Jan 26 '11 at 2:46
you started programming with SQL? I'm impressed. – Rafe Kettler Jan 26 '11 at 2:56
@Rafe I actually did it out of necessity but thanks. Why are you impressed? – super9 Jan 26 '11 at 2:59
it's just a strange place to start. Most people start with Python, Java, C, or something along those lines. – Rafe Kettler Jan 26 '11 at 3:01
feedback

7 Answers

up vote 5 down vote accepted

There is Dive Into Python which leads you by example. Also, if you prefer Head first series, there is Head First Python available too.

link|improve this answer
+1, it's a great resource (if you're already a programmer). The only caution I'd give is that the newest one is for Python 3, and the previous version is somewhat outdated (Python 2.2, really). – Rafe Kettler Jan 26 '11 at 2:36
+1, Because I learned with Dive Into Python :') – razpeitia Jan 26 '11 at 3:06
feedback

There are tons of (free) resources for learning Python. The Python docs provides a tutorial. You may want to try this: http://learnpythonthehardway.org/static/LearnPythonTheHardWay.pdf

Learning a new language is often like writing...you just need to start typing

link|improve this answer
feedback

If you have 0 programming background, Non-Programmer's Tutorial for Python is very good.

link|improve this answer
feedback

I really like ""Core Python Programming" by Wesley Chun. Lots of exercises.

link|improve this answer
feedback

Check out Python by Example (a web page).

link|improve this answer
feedback

You can also start on trypython.org, a website. It starts from the basics and might be what you are looking for.

link|improve this answer
feedback

try http://www.zacharski.org/books/python-for-linguists/ it's focusing on analysing texts but the examples are really clear

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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