EvelynM comments on Free Tutoring in Math/Programming - Less Wrong

70 Post author: Patrick 29 September 2011 01:45PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (18)

You are viewing a single comment's thread.

Comment author: EvelynM 29 September 2011 04:22:39PM 6 points [-]

The reference I've been suggesting for Python is http://learnpythonthehardway.org/

A way I've found effective for learning beyond the basics, is to tweak existing programs. github.com has a massive amount of code for you to look at, to copy and change, searchable in many ways, including by programming language.

Learning programming is similar in difficulty to the project of becoming a clearer thinker, and as useful.

Comment author: handoflixue 29 September 2011 07:53:25PM 2 points [-]

Second the recommendation for http://learnpythonthehardway.org/ - three of my friends are teaching themselves coding off of that

Comment author: Patrick 29 September 2011 05:28:07PM 1 point [-]

It has the advantage of being more well defined though ;)

Comment author: MarkusRamikin 30 September 2011 11:02:43AM *  0 points [-]

Any recommendations of a good tutorial of Python 3?

EDIT: Thanks for the responses.

Comment author: EvelynM 30 September 2011 02:48:21PM 1 point [-]

Swaroop writes well, and covers both Python 2 and 3: http://www.swaroopch.com/notes/Python

Comment author: shokwave 30 September 2011 02:17:38PM 1 point [-]

The very same site, and take a little longer to look up the differences between what The Hard Way uses and Python 3. As I recall it's mostly syntax stuff (like the changes to print), all the major changes are beyond the scope of the book (at which point you'd probably be able to teach yourself Python 3?).

Comment author: EvelynM 30 September 2011 05:30:22PM 0 points [-]

Yes, starting with Python 2 won't make it more difficult to pick up Python 3.