class Bird:
def __init__(self):
self.flying = True
def birdsong(self):
print("새소리")
class Sparrow(Bird):
print("짹짹")
my_pet = Sparrow()
print(my_pet.flying)
my_pet.birdsong()