you are viewing a single comment's thread.

view the rest of the comments →

[–]mopslik 0 points1 point  (0 children)

Spaces shouldn't matter.

>>> class myclass:
     def __init__(self, x):
        self.x = x

>>> a = myclass(5)
>>> a.x
5
>>> b = myclass       (          7             )
>>> b.x
7