tags:

views:

158

answers:

8

Possible Duplicate:
Python tutorial for total beginners?

Hi

I am new in the forum and would like to have advices concerning books to learn Python.

Thanks in advance.

Mamane

+6  A: 

http://diveintopython.org

S.Mark
An extremely good book! Plus it's available as a pdf for free, so you really can't complain!
Irfy
I've read this book and I have some complaints about it. Some chapters tell open lies (like the one about private methods). Other chapters teach really bad practices, *"hacks"* that should be avoided in real python programming.
nosklo
Thanks for the link and comment
Mamane
don't forget the new version for Py3: http://diveintopython3.org/
Corey Goldberg
+2  A: 

I would start by reading the Python Tutorial. It's free and very well written.

Mongoose
+2  A: 

I personally used:

Try Python

Lets you work through the examples on the site.

Irfy
Thanks, Pretty good examples for Beginners
Mamane
A: 

There are hundreds of books and resources out there for you.

Amazon Search

Dive into Python (free book)

Official Python Tutorial

More tutorials - including the installation of python itself

Norm Matloff's Python Tutorials (personal favorite)

There is also try python which is a silverlight browser-app with tutorials, a python interpreter and a very quick way to get started with the langauge - give it a go!

Daniel May
A: 

I started with Wrox Beginning Python by Peter Norton et al. and then Expert Python Programming by Tarek Ziade when I wanted to try some new things.

FlyingToaster
+1  A: 

Python in a nutshell by Alex Martelli

Building Skills in Python by S.Lott

Both people are expert SO expert users.

DrFalk3n
A: 

Good link index up at The Python Documentaion Wiki

Nate
A: 

Python Cookbook by Alex Martelli is good. Also, he is a regular answerer at Stackoverflow!

This book has recipes of certain tasks.

TIMEX