up vote 28 down vote favorite
37
share [g+] share [fb]

I am new to any scripting language. But, Still I worked on scripting a bit like tailoring other scripts to work for my purpose. For me, What is the best online resource to learn Python?

[Response Summary:]

Some Online Resources:

http://docs.python.org/tut/tut.html - Beginners

http://diveintopython.org/ - Intermediate

http://www.pythonchallenge.com/ - Expert Skills

http://docs.python.org/ - collection of all knowledge

Some more:

A Byte of Python.

Python 2.5 Quick Reference

Python Side bar

A Nice blog for beginners

Think Python: An Introduction to Software Design

link
feedback

locked by Robert Harvey Oct 5 '11 at 2:57

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by Tim Post Jun 28 '11 at 12:21

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

22 Answers

up vote 24 down vote accepted

If you need to learn python from scratch - you can start here: http://docs.python.org/tut/tut.html - good begginers guide

If you need to extend your knowledge - continue here http://diveintopython.org/ - good intermediate level book

If you need perfect skills - complete this http://www.pythonchallenge.com/ - outstanding and interesting challenge

And the perfect source of knowledge is http://docs.python.org/ - collection of all knowledge

link
3  
Dive in to Python is not an intermediate level book. It's a book for experienced programmers who are new to Python. – Dave Webb Sep 16 '08 at 9:29
1  
Thank you soo much for the Dive in to python. Its an amazing book. – doc_180 May 31 '11 at 19:30
feedback

If you're a beginner, try my book A Byte of Python.

If you're already experienced in programming, try Dive Into Python.

link
feedback

I think Python Challenge is great.

It's not about learning Python (syntax) but presents you small and fun riddles. Solving the riddles is based on Python but you can use whatever fits (your calculator, bash scripts, Perl...). After you solved one, you get to see how others have solved it and can discuss the pros & cons of the different ways.

Very nice to get a feel for how things could be done (smart) in Python. This site works especially well if you know a bit about other scripting languages or the commandline, etc.

link
This is really nice. – Yugal Jindle Nov 20 '11 at 6:34
feedback

The tutorial at Python's homepage is a good place to start. Also, there are some screencasts here.

link
feedback

Diveintopython is great!

link
feedback

These are unvaluable online reference tools:

Other online resources for beginners:

link
feedback

The Python tutorial is actually pretty good.

There's also a video series on showmedo about python.

Between those two resources, you should have more than enough to learn the basics!

link
Show me do is actually a great concept.. – Yugal Jindle Nov 20 '11 at 6:31
feedback

You can look at Building Skills in Python, also. It presumes some level of experience in programming.

If you're really new, try Building Skills in Programming. It includes a lot of background and fundamentals.

link
feedback

Google's Python Class

Welcome to Google's Python Class -- this is a free class for people with a little bit of programming experience who want to learn Python. The class includes written materials, lecture videos, and lots of code exercises to practice Python coding. These materials are used within Google to introduce Python to people who have just a little programming experience. The first exercises work on basic Python concepts like strings and lists, building up to the later exercises which are full programs dealing with text files, processes, and http connections. The class is geared for people who have a little bit of programming experience in some language, enough to know what a "variable" or "if statement" is. Beyond that, you do not need to be an expert programmer to use this material.

link
I learned and gained confidence with Google's Python Class !! I recommend this... !! – Yugal Jindle Nov 20 '11 at 6:30
feedback

There are some screencasts on http://showmedo.com

link
feedback

I learned from the Python Tutorial!

link
feedback

+1 for Dive Into Python

link
feedback

The python manual

Its a bit long winded sometimes but it tells you all you need to know to get going.

link
feedback

PLEAC , has a Python Cookbook , which is very helpful .

link
feedback

Learn Python in 10 minutes

link
feedback

The Cookbook is absolutely essestial if you want to know idiomatic python.

link
feedback

I consider ActiveState's Python community to be a great resource. Also DZone Snippets can be useful.

link
feedback

I first ran across Software Carpentry looking at lists of python tutorials.. but its a lot more than a tutorial on python. turns out what I really learned was how to use subversion, and that none of my projects are better suited to python than to perl... yet.

link
feedback

Also consider Hands-On Python. It is used as a primary text for Computer Science 150 at Loyola University. It is concise intro to Python while emphasizing good programming style and design.

link
feedback

The Hazel Tree

link
feedback

Python Cookbook is very useful.

link
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.