functools

Posted pdun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了functools相关的知识,希望对你有一定的参考价值。

1、偏函数

技术图片
import functools
int("1010",base=2)

#把一个参数固定住,形成新的参数
s=functools.partial(int,base=2)
print(s(1111))
View Code

 

以上是关于functools的主要内容,如果未能解决你的问题,请参考以下文章