In this lesson, we start building our Dog class and fill it out with attributes.

We can instantiate our Dog class like this

Language: Python
philo = Dog("Philo", 5)

We can access the instance attributes with dot notation.

Language: Python
print(philo.name)