#作用:为一个函数设置默认参数 #实例: def func(a,b): print(a,b) func(5,8) #正常调用 new_func = partial(func,20) new_func(30) #再次调用