Re: *args and **kwargs
JonathanB <doulo...@gmail.com>
> I hope this example code will help you understand:
>>Code Snipped<<
OOH!! That makes perfect sense, thanks!, *args are passed as a turple,
**kwargs are passed as a dictionary. That means **kwargs is probably
what I want.
JonathanB