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
- inplace()
- randrange()
- choice()
- shutil
- discard()
- HTML
- MySQL
- MySqlDB
- zipfile
- 파이썬
- shuffle()
- CSS
- decode()
- mro()
- fileinput
- 오버라이딩
- __getitem__
- glob
- items()
- __len__
- fnmatch
- node.js
- locals()
- __annotations__
- remove()
- Database
- View
- count()
- __sub__
- JS
Archives
- Today
- Total
목록__sub__ (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

1. 스페셜 메소드(Special Method) __로 시작해서 __로 끝나는 특수함수 해당 메소드들을 재구현하면 객체에 여러가지 파이썬 내장 함수나 연산자에 원하는 기능을 부여할 수 있음 In [43]: class Point: def __init__(self, x, y): self.x = x self.y = y def print_point(self): # (3, 4) print(f'({self.x}, {self.y})') def __str__(self): # str() 함수를 오버라이딩 return (f'({self.x}, {self.y})') def __add__(self, pt): # + 연산자를 오버라이딩 (객체 + 객체) new_x = self.x + pt.x new_y = self.y + pt..
파이썬 기초
2023. 3. 10. 13:34