LANGUAGE » PYTHON » PACKAGE
Operator
Usage
python
from operator import itemgetter, attrgetterUsually 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