class Food(object):     def my_method(self):       print("I like Stew") stew = Food() stew.my_method()