摘要:
装饰器,把多个函数绑在一起组成一个泛函数 函数的使用 1 <class 'int'> intxx <class 'str'> str[1] <class 'list'> obj(1, 2, 3) <class 'tuple'> int{'a': 'b'} <class 'dict'> int 类中使 阅读全文
摘要:
inspect.signature函数返回一个inspect.Signature对象,它有一个parameters属性,这是一个有序映射,把参数名和inspect.Parameter对象对应起来,各个Paramters属性他有自己的属性,例如name,default,kind,特殊的inspect. 阅读全文