本文主要是介绍初识functools模块,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-
functools
- docs.python.org
The functools module is for higher-order functions: functions that act on or return other functions.
-
包含功能
-
装饰器
- @functools.cached_property(func)
- @functools.lru_cache(user_function)
- @functools.lru_cache(maxsize=128, typed=False)
- @functools.total_ordering
- @functools.singledispatch
- @functools.wraps(wrapped, assigned=WRAPPER_ASSIGNMENTS, updated= WRAPPER_UPDATES)
-
函数
- functools.cmp_to_key(func)
- functools.parial(func,/,*args,**keywords)
- functools.reduce(function, iterable[, initializer])
- functools.update_wrapper(warpper, wrapped, assigned=WARPPER_ASSIGNMENTS,updated=WRAPPER_UPDATES)
-
类
class functools.parialmethod(func,/,*args,**keywords)
- class functools.singledispathchmethod(func)
-
这篇关于初识functools模块的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!