• 코드:
​x
 
1
class Bird:
2
    def __init__(self):
3
        self.flying = True
4
​
5
    def birdsong(self):
6
        print("새소리")
7
​
8
​
9
class Sparrow(Bird):
10
    def birdsong(self):
11
        print("짹짹")
12
​
13
​
14
my_pet = Sparrow()
15
​
16
print(my_pet.flying)
17
my_pet.birdsong()
18
​
표준입력 & 실행옵션