class Cat: def __init__(self, meow): self.meow = meow def sound(self): print(self.meow) soyong32 = Cat('meow')