欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python inspect 判断是否是方法,模块,函数等内置特殊属性

程序员文章站 2022-04-04 14:32:57
python inspect 判断是否是方法,模块,函数等内置特殊属性 import inspect inspect.ismodule() inspect.isclass() inspect.ismethod() etc... ......

python inspect 判断是否是方法,模块,函数等内置特殊属性

import inspect

inspect.ismodule()

inspect.isclass()

inspect.ismethod()

etc...