Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.2K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.4K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
Python Decorators
29+ articles
Python functools-module
5 posts
Recent Articles
Popular Articles
Sorting Objects of User Defined Class in Python
Last Updated: 23 July 2025
Sorting objects of a user-defined class in Python involves arranging instances of the class based on the values of one or more of their attributes. For example, if we have...
read more
Technical Scripter
Python
Python-Functions
Python function-programs
Python functools-module
How does the functools cmp_to_key function works in Python
Last Updated: 23 July 2025
functools.cmp_to_key() function converts an old-style comparison function (i.e., a function that compares two arguments and returns -1, 0, or 1) into a key function. This ...
read more
Misc
Python
Python functools-module
Clear LRU Cache in Python
Last Updated: 15 July 2025
The LRU is the Least Recently Used cache. LRU Cache is a type of high-speed memory, that is used to quicken the retrieval speed of frequently used data. It is implemented ...
read more
Python
Picked
Python functools-module
Python Functools - lru_cache()
Last Updated: 26 June 2020
The functools module in Python deals with higher-order functions, that is, functions operating on(taking as arguments) or returning functions and other such callable objec...
read more
Python
Picked
Python Decorators
Python functools-module
Python Functools - total_ordering()
Last Updated: 26 March 2020
Functools module in python helps in implementing higher-order functions. Higher-order functions are dependent functions that call other functions. Total_ordering provides ...
read more
Python
Python Decorators
Python functools-module