Python doesn't use a JIT...??? (As far as I know apart from the PyPy project)
I think you are thinking of the wrong language, ninja9578.
It is indentation sensitive, yes, but see:
Code:
>>> class A:
...    def __init__(self, x):
...         self.x = x
... 
>>> a = A(16)
>>> a.x
16
Python is strongly object oriented.

Also, http://docs.python.org/tutorial/.