pbr - Python Build Reasonableness A library for managing setuptools packaging needs in a consistent manner. pbr reads and then filters the setup.cfg data through a setup hook to fill in default values and provide more sensible behaviors, and then fee
js中的函数应用 什么是函数,函数的概念 函数就像一个黑匣子,里面的东西你都不知道,但是你提供一些材料放进去,他可以制造出你需要的东西; 可以让多个一样的功能封装组合起来,然后想执行几次就执行几次 函数就是另外一种形式的变量 函数的创建和执行 定义函数的方式 函数声明 ```js function test(){ } ``` 函数表达式 ```js //命名函数表达式 var test = function abc(){ } //匿名函数表达式 var test = function(){ }