500
Create and store a dog named Lazy in a variable named 'my_dog' using the following class definition. The age and height can be anything
class Dog (rit_object):
__slots__ = ('name', 'age', 'height')
_types = (str, int, float)
my_dog = Dog("Lazy", 7, 3.4)