์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- m1 anaconda ์ค์น
- Python
- cost function
- ์ค์คํธ๋ฆฌ์
- fatigue fracture
- electrochemical models
- Deeplearning
- ์ ๋ฝ ๊ตํํ์
- set method
- ์ฒญ์ถ ํ์ดํ
- anaconda ๊ฐ์ํ๊ฒฝ
- li-ion
- fluent python
- special method
- ๋ฅ๋ฌ๋
- ๊ตํํ์
- ์ ํํ๊ท
- ๋ฏธ๋์์ ์ฅํ์
- ํน๋ณ ๋ฉ์๋
- gradient descent
- ์ด์ฐจ์ ์ง
- Linear Regression
- ์๊ทน์ฌ
- Machine learning
- set add
- 2022๋
- Andrew ng
- ๋์23์ด
- ๋ฏธ๋์์ ํด์ธ๊ตํ
- ์ ๋ฝ
- Today
- Total
Done is Better Than Perfect
[Fluent Python ์คํฐ๋] Study Note #1 Data Model ๋ณธ๋ฌธ
[Fluent Python ์คํฐ๋] Study Note #1 Data Model
jimingee 2021. 11. 15. 20:23
โข๏ธ ํ์ด์ฌ์ผ๋ก ์ฝ๋ฉํ ์คํธ ๊ณต๋ถ๋ฅผ ํ ๋งํผ ํ์ด์ฌ์ ์ต์ํ์ง๋ง ํ์ด์ฌ์ ์ธ๊ณ๋ ๊ณต๋ถํ ์๋ก ๋์ฑ ์ด๋ ค์ด ๊ฒ ๊ฐ๋ค.
โข๏ธํ์ด์ฌ์ผ๋ก ํ์ ๊ณต๋ถ๋ฅผ ํ๋ ค๋ฉด ์ ๋๋ก ์์์ผ ํ๋ค๋ ๊ต์๋์ ์ถ์ฒ๊ณผ ํ์ด์ฌ์ค๋ฌ์(pythonic)์ ๊น์ด์๊ฒ ์ดํดํ๊ณ ์
'Fluent Python' ์คํฐ๋๋ฅผ ์์ํ์๋ค.
1-1. Python Data Model, Special Method
โAbstract
ํ์ด์ฌ์ด ์ฒ์ ๋ฐฐ์ธ ๋ ์ข์ ์ธ์ด๋ผ๊ณ ์์ฃผ ์ธ๊ธ๋๋ ์ด์ ์ค ํ๋๋ ์ธ์ด์ ์ผ๊ด์ฑ ๋๋ฌธ์ด๋ค.
์๋ฅผ ๋ค์ด, object์ ๊ฒฝ์ฐ len( ) ํจ์๋ฅผ ์ฌ์ฉํ์ฌ ํฌ๊ธฐ๋ฅผ ์ป์ ์ ์๋ค.
์ด์ ์ผ๊ด๋๊ฒ, ์ฌ์ฉ์ ์ ์ ํด๋์ค๋ __len__( )์ ๊ฐ์ ํน์ ๋ฉ์๋๋ฅผ ๊ตฌํํ ๋ ์ด๋ฌํ ๊ธฐ๋ฅ์ ์ฌ์ฉํ ์ ์๋ค.
๐ก Python magic method
ํน๋ณ ๋ฉ์๋ = ๋งค์ง ๋ฉ์๋(magic method) = dunder method (์ฌ๊ธฐ์ dunder๋ double under์ ์ค์๋ง)
๐์ ๋ค์ ์ด์ค ์ธ๋๋ฐ ์์ [์, __getitem__( )
๐๊ธฐ๋ณธ์ ์ธ ์ธ์ด ๊ตฌ์กฐ์ฒด ๊ตฌํํ ์ ์์
๐ํน๋ณ ๋ฉ์๋๋ ํ์ด์ฌ ์ธํฐํ๋ฆฌํฐ๋ฅผ ํธ์ถํ๊ธฐ ์ํ ๊ฒ
ํ์ด์ฌ ์์ค ์ฝ๋์์๋ object.__len__()์ผ๋ก ์ง์ ํธ์ถ X โก๏ธ len(object) ํํ๋ก ํธ์ถ
๐์ข ์ข len( ), iter( ), str( ) ๊ณผ ๊ฐ์ ํ์ด์ฌ ๋ด์ฅํจ์๊ฐ ํด๋น ํน๋ณ ๋ฉ์๋๋ฅผ ํธ์ถ
[ํ์ด์ฌ ์ฝ๋] for i in x โก๏ธ iter(x) ํธ์ถ โก๏ธ [ํ์ด์ฌ ์ธํฐํ๋ฆฌํฐ] x.__iter__( ) ํธ์ถ
import collections
Student = collections.namedtuple('Student',['age', 'class_name'])
class Stud:
age = [str(n) for n in range(10,15)]
class_name = 'hana dol set net'.split()
def __init__(self):
self._std = [Student(age, class_name) for age in self.age
for class_name in self.class_name]
def __len__(self):
return len(self._std)
def __getitem__(self, position):
return self._std[position]
friend = Stud()
print(len(friend)) #__len__( ) ํจ์๋ฅผ ํ์ด์ฌ ์ธํฐํ๋ฆฌํฐ์ ์ ๋ฌ
## 20
print(friend[0]) #__getitem__( ) ํจ์๋ฅผ ํ์ด์ฌ ์ธํฐํ๋ฆฌํฐ์ ์ ๋ฌ
## Student(age='10', class_name='hana')
print(friend[-1])
## Student(age='14', class_name='net')
print(friend[:3]) # list slicing ๊ฐ๋ฅ
## [Student(age='10', class_name='hana'), Student(age='10', class_name='dol'), Student(age='10', class_name='set')]
Stud ์ ํด๋์ค์ __len__( ), __getitems__( )์ 2๊ฐ์ ์ฌ์ฉ์ ์ ์ ํน๋ณ ๋ฉ์๋๋ฅผ ๊ตฌํํ์๋ค.
๋์ ๊ตฌ์กฐ ํด์
โก๏ธ len(friend) ํจ์๋ __len__( ) ํจ์๋ฅผ ํ์ด์ฌ ์ธํฐํ๋ฆฌํฐ์ ์ ๋ฌํ์๋ค.
โก๏ธ friend[0]์ __getitem__( ) ํจ์๋ฅผ ํ์ด์ฌ ์ธํฐํ๋ฆฌํฐ์ ์ ๋ฌํ์๋ค.
โก๏ธ friend[:3]์ ๊ฐ์ด list slicing ๋ ๊ฐ๋ฅํ๋ค.
ํน๋ณ ๋ฉ์๋ ๊ตฌํ์ ์๋ฏธ
์ฌ์ฉ์ ์ ์ ๊ฐ์ฒด๋ ๋ด์ฅํ ๊ฐ์ฒด์ฒ๋ผ ์๋ โก๏ธ ํ์ด์ฌ์ค๋ฌ์ด(pythonic) ํํ๋ ฅ์๋ ์ฝ๋ฉ ์คํ์ผ ๊ตฌ์ฌ ๊ฐ๋ฅ
๐ก Vector class
๋ค์์ vector ํด๋์ค๋ฅผ ๋ง๋ค์ด ์ฌ์ฉ์ ์ ์ ํน๋ณ ๋ฉ์๋๋ฅผ ๋ง๋ ๋ฐฉ์์ด๋ค.
from math import hypot
class Complicated:
def __init__(self, x=0, y=0):
self.x = x
self.y = y
def __repr__(self):
return 'Complicated num(%r + %ri)' % (self.x, self.y)
def __abs__(self): # sqrt(x*x + y*y)
return hypot(self.x, self.y)
def __bool__(self): # complicated์ ํฌ๊ธฐ๊ฐ 0์ด๋ฉด FALSE ๋ฐํ, ์๋๋ฉด TRUE ๋ฐํ
return bool(abs(self))
def __add__(self, other):
x = self.x + other.x
y = self.y + other.y
return Complicated(x, y)
def __mul__(self, scalar):
return Complicated(self.x * scalar, self.y * scalar)
c1 = Complicated(2,4) # __repr__() ํธ์ถ
c2 = Complicated(2,1)
print(c1+c2) # __add__( ) ํธ์ถ
## Complicated num(4 + 5i)
c = Complicated(3,4)
print(abs(c)) # __abs__( ) ํธ์ถ
## 5.0
print(c*3) # __abs__( ) ํธ์ถ
## Complicated num(9 + 12i)
print(abs(c*3)) #__mul__( ) ํธ์ถ
## 15.0
๐ __repr__( )๊ณผ __str__( ) ๋น๊ต
__str__( ) : print() ํจ์ ํฌํจ๋จ , ์ฌ์ฉ์์๊ฒ ๋ณด์ฌ์ฃผ๊ธฐ ์ ๋นํ ํํ์ ๋ฌธ์์ด ๋ฐํ
__repr__( ) : ๋ฐํํ ๋ฌธ์์ด ๋ช ํ
โก๏ธ ๋ ์ค ํ๋๋ง ๊ตฌํํด์ผ ํ๋ค๋ฉด __repr__( )์ ๊ตฌํํ๋ ๊ฒฝ์ฐ๊ฐ ๋ ๋ง๋ค
'๐ค AI > ๊ฐ๋ฐ๊ณต๋ถ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[์๊ณ ๋ฆฌ์ฆ] ์ต๋ ๊ณต์ฝ์, ์ต์ ๊ณต๋ฐฐ์ (0) | 2021.08.03 |
---|---|
[๋ฅ๋ฌ๋] ์ ํ ํ๊ท์ ์ต์ ์ ๊ณฑ๋ฒ (0) | 2021.07.20 |
[์๊ณ ๋ฆฌ์ฆ] set method (0) | 2021.07.16 |
conda ๊ฐ์ ํ๊ฒฝ ์์ฑ, ๊ด๋ฆฌ (3) | 2021.07.14 |