250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- discard()
- __getitem__
- choice()
- inplace()
- shuffle()
- remove()
- View
- glob
- 오버라이딩
- zipfile
- HTML
- CSS
- __len__
- JS
- mro()
- count()
- node.js
- locals()
- MySQL
- fnmatch
- randrange()
- decode()
- items()
- shutil
- MySqlDB
- 파이썬
- fileinput
- __annotations__
- Database
- __sub__
Archives
- Today
- Total
목록super() (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

1. 상속 기존의 정의해둔 클래스의 기능을 그대로 물려받음 기존클래스에 기능 일부를 추가하거나, 변경하여 새로운 클래스를 정의함 코드 재사용할 수 있게 됨 안정적이고 유지보수에 용이함 상속을 받고자 하는 대상인 기존 클래스를 부모, parent, super, base 클래스라고 부름 상속을 받는 새로운 클래스는 자식, child, sub 클래스라고 부름 In [1]: class Animal: def __init__(self, name, age): self.name = name self.age = age def eat(self, food): print(f'{self.name}는 {food}를 먹습니다.') def sleep(self, hour): print(f'{self.name}는 {hour}시간 동안 ..
파이썬 기초
2023. 3. 10. 11:24