I am new to Python so it would be great if someone can find time to answer my query :
Fido = Dog()
I am able to understand
Fido.size = "tall"
Fido.sleeps()
But I am not sure what this means as given in the below link :
http://reeborg.ca/docs/oop_py_en/oop.html
Objects can also have other objects that belong to them, each with their own methods or attributes:
Fido.tail.wags()
Fido.tail.type = "bushy";
Fido.left_front_paw.moves()
Fido.head.mouth.teeth.canine.hurts()
Please help