<br><div class="gmail_quote"><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Okay, we now have a dog named Fluffy, which is just one instance of<br>
our dog class. With the way you would want to do things, I would have<br>
to say<br>
bark(f)<br>
But what is bark? Where is it defined? You can see it is in the dog<br>
class, but Python cannot; you passed a dog instance to bark(), but<br>
that will not tell Python to search in the dog class to find the bark<br>
method. Saying<br>
f.bark()<br>
will work since it tells Python:<br>
take this instance of dog, called f, and call its bark method. The<br>
bark method is in the dog class since bark is being called on a dog<br>
object (remember that an object is just an instance of a class).<br>
I hope this made some sense.<font color="#888888"><a href="http://www.facebook.com/mehgcap" target="_blank"></a></font></blockquote><div><br> </div>This is terrific --- very clarifying.  Thank you so much.<br><br>Mike<br>
</div><br>