什么是python的自省


Posted in Python onJune 21, 2020

什么是自省?

在日常生活中,自省(introspection)是一种自我检查行为。

在计算机编程中,自省是指这种能力:检查某些事物以确定它是什么、它知道什么以及它能做什么。自省向程序员提供了极大的灵活性和控制力。

说的更简单直白一点:自省就是面向对象的语言所写的程序在运行时,能够知道对象的类型。简单一句就是,运行时能够获知对象的类型。

例如python, buby, object-C, c++都有自省的能力,这里面的c++的自省的能力最弱,只能够知道是什么类型,而像python可以知道是什么类型,还有什么属性。

最好的理解自省就是通过例子: Type introspection 这里是各种编程语言中自省(introspection)的例子(这个链接里的例子很重要,也许你很难通过叙述理解什么是introspection,但是通过这些例子,一下子你就可以理解了)

回到Python,Python中比较常见的自省(introspection)机制(函数用法)有: dir(),type(), hasattr(), isinstance(),通过这些函数,我们能够在程序运行时得知对象的类型,判断对象是否存在某个属性,访问对象的属性。

dir()

dir() 函数可能是 Python 自省机制中最著名的部分了。它返回传递给它的任何对象的属性名称经过排序的列表。如果不指定对象,则 dir() 返回当前作用域中的名称。让我们将 dir() 函数应用于 keyword 模块,并观察它揭示了什么:

>>> import keyword
>>> dir(keyword)
['__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', 'iskeyword', 'kwlist', 'main']

type()

type() 函数有助于我们确定对象是字符串还是整数,或是其它类型的对象。它通过返回类型对象来做到这一点,可以将这个类型对象与 types 模块中定义的类型相比较:

>>> type(42)<class 'int'>
>>> type([])<class 'list'>

isinstance()

可以使用 isinstance() 函数测试对象,以确定它是否是某个特定类型或定制类的实例:

>>> isinstance("python", str)
True

python自省中help用法扩展:

打开python的IDLE,就进入到了python解释器中,python解释器本身是被认为是一个主模块,然后在解释器提示符>>>下输入一些我们想了解的信息,所以首先我们会先寻求帮助,所以输入help,接着输入help(),我们就进入了help utility,然后循着提示keywords,modules,以了解python的关键字以及python自带的或者我们额外安装和定义的模块,如果要退出,输入'q',然后回车。

如果我们想了解某个对象(python里面所有对象都可以认为是对象),也可以求助也help(),不过要在括号里输入对象的名称,格式help(object),例如help(print),鉴于对象的自省内容太多,有的只粘贴出部分内容。

>>> help
Type help() for interactive help, or help(object) for help about object.
>>> help()

Welcome to Python 3.6's help utility!

If this is your first time using Python, you should definitely check out
the tutorial on the Internet at https://docs.python.org/3.6/tutorial/.

Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules. To quit this help utility and
return to the interpreter, just type "quit".
...
help> keywords

Here is a list of the Python keywords. Enter any keyword to get more help.

False        def         if         raise
None        del         import       return
True        elif        in         try
and         else        is         while
as         except       lambda       with
assert       finally       nonlocal      yield
break        for         not         
class        from        or         
continue      global       pass        

help> modules

Please wait a moment while I gather a list of all available modules...

PIL         base64       idlelib       runpy
__future__     bdb         idna        runscript
__main__      binascii      idna_ssl      sched
_ast        binhex       imaplib       scrolledlist
_asyncio      bisect       imghdr       search
_bisect       browser       imp         
...
Enter any module name to get more help. Or, type "modules spam" to search
for modules whose name or summary contain the string "spam".
>>> help('print')
Help on built-in function print in module builtins:

print(...)
  print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
  
  Prints the values to a stream, or to sys.stdout by default.
  Optional keyword arguments:
  file: a file-like object (stream); defaults to the current sys.stdout.
  sep:  string inserted between values, default a space.
  end:  string appended after the last value, default a newline.
  flush: whether to forcibly flush the stream.

到此这篇关于什么是python的自省的文章就介绍到这了,更多相关python自省是什么内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python使用reportlab将目录下所有的文本文件打印成pdf的方法
May 20 Python
python的staticmethod与classmethod实现实例代码
Feb 11 Python
python表格存取的方法
Mar 07 Python
详解Python中的type和object
Aug 15 Python
浅谈Python爬虫基本套路
Mar 25 Python
Python提取特定时间段内数据的方法实例
Apr 01 Python
python twilio模块实现发送手机短信功能
Aug 02 Python
python爬虫爬取笔趣网小说网站过程图解
Nov 18 Python
Numpy将二维数组添加到空数组的实现
Dec 05 Python
Python使用Numpy模块读取文件并绘制图片
May 13 Python
解决django migrate报错ORA-02000: missing ALWAYS keyword
Jul 02 Python
Python requests HTTP验证登录实现流程
Nov 05 Python
python的json包位置及用法总结
Jun 21 #Python
为什么相对PHP黑python的更少
Jun 21 #Python
通过自学python能找到工作吗
Jun 21 #Python
python中常见错误及解决方法
Jun 21 #Python
python安装后的目录在哪里
Jun 21 #Python
浅谈Python 函数式编程
Jun 20 #Python
音频处理 windows10下python三方库librosa安装教程
Jun 20 #Python
You might like
php 操作excel文件的方法小结
2009/12/31 PHP
PHP用星号隐藏部份用户名、身份证、IP、手机号等实例
2014/04/08 PHP
PHP实现获取图片颜色值的方法
2014/07/11 PHP
PHP 信号管理知识整理汇总
2017/02/19 PHP
phpStudy2016 配置多个域名期间遇到的问题小结
2017/10/19 PHP
JQuery 无废话系列教程(一) jquery入门 [推荐]
2009/06/23 Javascript
海量经典的jQuery插件集合
2010/01/12 Javascript
通过Javascript创建一个选择文件的对话框代码
2012/06/16 Javascript
js动态创建及移除div的方法
2015/06/03 Javascript
js和jquery实现监听键盘事件示例代码
2020/06/24 Javascript
jQuery 选择同时包含两个class的元素的实现方法
2016/06/01 Javascript
jQuery基于正则表达式的表单验证功能示例
2017/01/21 Javascript
Bootstrap入门教程一Hello Bootstrap初识
2017/03/02 Javascript
vue-router路由懒加载和权限控制详解
2017/12/13 Javascript
JS抛物线动画实例制作
2018/02/24 Javascript
微信小程序input框中加入小图标的实现方法
2018/06/19 Javascript
在vue中使用公共过滤器filter的方法
2018/06/26 Javascript
详解三种方式在React中解决绑定this的作用域问题并传参
2020/08/18 Javascript
[01:25]2014DOTA2国际邀请赛 zhou分析LGD比赛情况
2014/07/14 DOTA
python BeautifulSoup设置页面编码的方法
2015/04/03 Python
Python 模块EasyGui详细介绍
2017/02/19 Python
Python制作微信好友背景墙教程(附完整代码)
2019/07/17 Python
Python实现直播推流效果
2019/11/26 Python
在Python中实现函数重载的示例代码
2019/12/12 Python
在keras中实现查看其训练loss值
2020/06/16 Python
解决TensorFlow程序无限制占用GPU的方法
2020/06/30 Python
python redis存入字典序列化存储教程
2020/07/16 Python
html5需遵循的6个设计原则
2016/04/27 HTML / CSS
介绍一下HDLC(High-Level Data Link Control)高层数据链路协议
2012/01/21 面试题
程序员经常用到的UNIX命令
2015/04/13 面试题
《维生素c的故事》教学反思
2014/02/18 职场文书
终止劳动合同协议书
2014/04/14 职场文书
机关门卫的岗位职责
2014/04/29 职场文书
校车安全责任书
2014/08/25 职场文书
小学生田径运动会广播稿
2014/09/11 职场文书
mysql查询结果实现多列拼接查询
2022/04/03 MySQL