taphonomist
Programmer
Is it possible to include more than one instance of self in the set of function arguments? As in
def functionForClass(self,firstArg, keyArg=self.stringProductingFunction()):
#do stuff, things
...
return
I keep getting errors with similar code, and was wondering if there was another way around.
Thanks,
D
def functionForClass(self,firstArg, keyArg=self.stringProductingFunction()):
#do stuff, things
...
return
I keep getting errors with similar code, and was wondering if there was another way around.
Thanks,
D