How come you have to set the initialized created variables to equal the parameters, shouldn't that be default?<br><br>class testing:<br>         def __init__(self,testing):<br>                   self.testing = testing<br>
x = testing("testing")<br>print x.testing<br><br><br>How come self.testing = testing<br><br>Can someone explain that in more detail, just confused on why you have to set it up like that.<br>