1212
algorithms-practice/python_utils/itemgetter at master · andrelbd1/algorithms-practice · GitHub
Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Itemgetter

  • Itemgetter is a utility from the operator module in Python that allows you to retrieve specific items from a list, tuple, or dictionary by their index or key. It is commonly used for sorting or extracting specific elements in a concise and readable manner.

Examples