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

I am going to need to learn advanced Python and must be good at it in about a year, Are there any books, recommendations. I am already very familiar with PHP, MySQL, JS + HTML, and know a bit of java and C (arduino programming).

Thanks, RayQuang

share|improve this question
6  
1  
"must be good at it" to accomplish what kind of tasks? – Steven Rumbalski Jan 6 '11 at 17:03
This is for general programming, e.g. writing scripts to alert me when a server goes down, server management, network monitoring, possibly arduino control, web application back ends etc... Not to mention for my job as CTO at RayQuang Industries – RayQuang Jan 7 '11 at 8:02

6 Answers

up vote 6 down vote accepted

Since you sound like a competent programmer, the best place to start may be the official Python 2.7 Tutorial. It's very thorough, certainly.

After that, I advise looking up through the language reference and standard library reference (the stdlib for Python is pretty massive) to get everything else.

share|improve this answer

There are a lot of good resources, either at the python wiki, or here at previous similar questions.

Generally I would recommend starting with the official python tutorial. Alternatively, you might want to check other tutorials, aimed for people with previous programming experience.

Afterwards, you can try books, such as 'Dive Into Python', but I always preferred sharpening my skills by trying a set of problems, such as python challenge and Project Euler.

I think that trying to solve such problems is a good advice for every programmer who's trying to learn a new language.

share|improve this answer

It's not a book, but I found the Google Python Class very useful. There's video, reading material, and practice questions that I found very useful.

share|improve this answer

take a look at Mark Lutz's book..

it's more than an introduction, but it's not very thorough

http://oreilly.com/catalog/9781565924642

once you finished that one, if you found it useful you might want to pass at:

http://oreilly.com/catalog/9780596158118?green=18666053383&cmp=af-mybuy-9780596158118.IP

another interesting one is the Python Cookbook

http://oreilly.com/catalog/9780596001674 (careful, it's 6 years old)

the official tutorials are very useful, too ;)

share|improve this answer
I'd hesitate to recommend the Python Cookbook as even the 2nd edition only covers Python 2.4. A lot has changed in the last six years. – Scott Griffiths Jan 6 '11 at 17:08
uhm...maybe it can result useful, at the end..however edited, thanks for pointing it out :) – Ant Jan 6 '11 at 17:14

I have good books, but I don't know exactly what do you want (CGI's, XML manipulation, ..). A nice way to start your study is with this book: Apress Beginning Python From Novice to Professional. After you see the examples and the simple structures, I suggest you to look the oficial site: http://www.python.org/ and the HOWTO examples: http://docs.python.org/dev/howto/index.html

share|improve this answer

It looks like there are a lot of good books being recommended. Be aware that there are two main versions of Python in circulation. 3.0 is the new, and a lot of 2.7 programs won't work with 3.0. Some of the syntax has been tidied up - and one of the most common problems is "print" which now has a syntax more consistent with the rest of the language.

As with any language, the best way to learn it is to start using it. Choose a project which pulls to Python's strengths (eg. text processing and data structures) and your probable needs in 12 months time, and start coding!

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.