LANGUAGE » PYTHON » PACKAGE
Operator
Usage
python
from operator import itemgetter, attrgetter
Usually it is used on functions like sort
or map
.
python
itemgetter('key') # Used for dictionaries or lists
attrgetter('id') # Used for class instances or named tuples