Python textbook recommendations?

Started by Glaurung, January 31, 2016, 11:40:15 AM

Previous topic - Next topic

Glaurung

I thought I'd consult the assembled wisdom of Exilian. I would like to learn Python (the programming language), and I would appreciate recommendations for textbooks or online materials to learn from. I'm familiar with programming in general, so I just need something to explain the syntax and quirks of Python specifically.

Lizard

I think Codecademy covers Python, but it is probably a little basic for us prior-programmers :P


The Python people offer various guides on their website (linked from the same place you download Python from), aimed at various experience levels.
A coder, a hoodie, a coffee pot, a robot.

"A ship in port is safe, but that is not what ships are built for."

Jubal

Moved to programming section.

And yes, I just mostly use Python's own documentation. A quick read over SOTK's tutorials in the relevant section here might not be a bad shout either, though they're a little more aimed at new programmers.
The duke, the wanderer, the philosopher, the mariner, the warrior, the strategist, the storyteller, the wizard, the wayfarer...

Glaurung

Thanks for the feedback.

I read through SotK's tutorials - that's what got me onto the idea of learning Python :)

I will aim to work through the official Python Tutorial, with the knowledge that there's a wide range of others available if I want them.

Another question, if I may: should I go for Python 2 or Python 3?

Jubal

Python 3 I think now makes more sense, most new stuff is being done for it rather than for 2.
The duke, the wanderer, the philosopher, the mariner, the warrior, the strategist, the storyteller, the wizard, the wayfarer...

Son of the King

This wiki page has an in depth discussion on which one to pick. I'd recommend learning Python 3, and then learning the differences if necessary :) .

Glaurung

Thanks again - yes, Python 3 looks like the way to go.