Which of the languages does Python resemble in its class syntax?

.net, python

Solution

None, really. Python syntax is kind of unique.

ie ( taken from: Python tutorial - classes )

>>> class Complex:
...     def __init__(self, realpart, imagpart):
...         self.r = realpart
...         self.i = imagpart
...
>>> x = Complex(3.0, -4.5)
>>> x.r, x.i
(3.0, -4.5)

It was heavily inspired in a language called ABC, but nowadays it's easier to learn Python than ABC.

See also: Python Wikipedia

Problem

I want to start programming in python and I was wondering, which languages does Python resemble in syntax? I am familiar with .net.

Original source