Re: [Tutor] Finding the differences between two lists
On Thu, Aug 25, 2011 at 4:08 PM, Justin Wendl wrote: > Hi John, > > Thanks for the quick response. Unfortunately it is returning the same > result.. Please send a small example of the contents in each file. -- Giovanni Tirloni sysdroid.com _
Re: [Tutor] Passing functions(with parameters) as paramiters to (looping)functions.
it doesn't work because you already called the function and is passing as parameter 'fn' whatever this_function() returned. >>> type(this_function) >>> type(this_function("I am a string")) I am a string If you really want this design,