Re: [Tutor] Question About Function Arguments and Returned Results

2006-04-11 Thread Kent Johnson
Richard Querin wrote: > > > On 4/11/06, *Kent Johnson* <[EMAIL PROTECTED] > > wrote: > > > There is no need to pass the class object in to the function, you can > create it in the function and return it. A class might be nice because > it gives names to th

Re: [Tutor] Question About Function Arguments and Returned Results

2006-04-11 Thread Richard Querin
On 4/11/06, Kent Johnson <[EMAIL PROTECTED]> wrote: There is no need to pass the class object in to the function, you cancreate it in the function and return it. A class might be nice becauseit gives names to the various values. A dict can also be used for this. Do what feels right :-)To be more sp