# Homework 26, problem 2: Dog with bark. # # Build a Dog class with a name attribute and a bark() method that # prints ": Woof!". Create two Dog objects with different names, # call bark() on both, and confirm each prints its own name. # # Run with: python exercises/26/homework/02-dog.py # Your code goes here: