What did you use to teach yourself Python?
11–20 of 47 posts
Re: What did you use to teach yourself Python?
#12Re: What did you use to teach yourself Python?
#13Re: What did you use to teach yourself Python?
#14Probably the best complement to the aforementioned tutorials. Dive into Python is good but i hate the examples he makes.
Re: What did you use to teach yourself Python?
#15Re: What did you use to teach yourself Python?
#16Re: What did you use to teach yourself Python?
#17Python tutorial: http://docs.python.org/tutorial/index.html And library reference: http://docs.python.org/library/index.html
Re: What did you use to teach yourself Python?
#18Python tutorial: http://docs.python.org/tutorial/index.html And library reference: http://docs.python.org/library/index.html
You could use these side by side with any decent university course that you can find online. Here is a link to Caltech's introductory Python course, with exercises posted that ramp up in difficulty while surveying most of the Python basics. http://www.cs.caltech.edu/courses/cs11/material/python/index...
And here is MIT's intro course on Python as well. Theirs includes the solutions too. http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Compute...
Re: What did you use to teach yourself Python?
#19Started at: http://en.wikipedia.org/wiki/Python_(programming_language) http://en.wikipedia.org/wiki/Python_syntax_and_semantics
Found most other details on here: http://www.python.org/dev/peps/ http://www.python.org/doc/
There's some good online tutorials to ease into some of the trickier details like metaclasses and descriptors.
I was already coding Ruby before this (and some LISP before that) so the whole dynamic language thing was familiar enough I could get away with mostly references. Your milage may vary :)
Re: What did you use to teach yourself Python?
#20http://www.pythonchallenge.com/
I've also read the "Dive Into Python" book, but that was equivalent to reading a book about an instrument without actually holding or playing one.