Hey guys... <br>I think we have a problem with my _init_ method and the constructor<br>When I create a class and its _init_ method and try to create an object of it outside the class,<br>Say, something like<br><br>class S:<br>
   def _init_(self, name=None):<br>       <a href="http://self.name">self.name</a> = name<br>s = S("MyName")<br><br>It says that the constructor takes no arguments!! I have to explicitly call the _init_ method which, I think is not the right way of doing things...<br>
Could you tell me if that is what is supposed to happen or is something wrong with my code?<br>