Python is not actually used for the client side, because none of the major web browsers have built-in Python.
However, Javascript is becoming more and more similar to Python as it evolved. You might want to learn Python and Javascript together.
Take a look https://developer.mozilla.org/en/New_in_JavaScript_1.7 and note the python-like nature of the new features. "Array accounting" is like understanding Python lists; Iterators and generators directly from Python "destructuring assignments" is the standard Python idiom.
Javascript is like Python with curly braces. It uses a very different inheritance model, but libraries are available that implement a more Python-like class system on top of the embedded system in Javascript.
steveha Oct 08 '09 at 20:30 2009-10-08 20:30
source share