Python resources

General Python resources:

Python.org
Official website for the Python programming language.
Python Reference Manual
Describes the syntax and "core semantics" of the language.
Python Library Reference
Describes the standard library that is distributed with the language and which greatly enhances its immediate usability.

Python and Django resources at Webmonkey:

Get Started with Python
Introduction to Python: what it is, core data types and a for. Basically covers chapters 1–4 of Mark Lutz's Learning Python published by O'Reilly.
Get Started with Django
Django is a web framework written in Python. This is lesson one of six.
Install Django and Build Your First App
Lesson two of six
Use URL Patterns and Views in Django
Lesson three of six
User Templates in Django
Lesson four of six
Integrate Web APIs into Your Django Site
Lesson five of six
Build a Microblog with Django
Lesson six of six
Python posts in the Webmonkey blog

Rapid Development with Python, Django, and Google App Engine. Guido van Rossum (Google)

Learn how to create great web applications quickly on Google App Engine using the Django Web framework and the Python language. Google App Engine lets you host complete, scalable web applications written in Python with minimal fuss. This tutorial assumes basic familiarity with Python, but definitely no advanced Python knowledge; Django experience is optional. You will learn how to use the Django web framework with the datastore API provided by Google App Engine, and how to get the most mileage out of the combination. You will also see how to use Django best practices like unit testing when developing for Google App Engine.

Presentation slides (PDF)

Source: YouTube