python中有帮助函数吗


Posted in Python onJune 19, 2020

python中的dir()函数是一个非常重要的函数,它可以帮助我们查看函数的功能和特性。

中文说明:不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表。如果参数包含方法__dir__(),该方法将被调用。如果参数不包含__dir__(),该方法将最大限度地收集参数信息。

参数object: 对象、变量、类型。

版本:该函数在python各个版本中都有,但是每个版本中显示的属性细节有所不同。使用时注意区别。

例如

>>>import struct
>>>dir() # show the names in the module namespace
['__builtins__','__doc__','__name__','struct']
>>>dir(struct) # show the names in the struct module
['Struct','__builtins__','__doc__','__file__','__name__',
 '__package__','_clearcache','calcsize','error','pack','pack_into',
 'unpack','unpack_from']
>>>class Shape(object):
    def __dir__(self):
      return ['area','perimeter','location']
>>> s= Shape()
>>>dir(s)
['area', 'perimeter', 'location']
Note Because dir() is supplied primarily as a convenience for use at an interactive prompt, it tries 
to supply an 
interesting set of names more than it tries to supply a rigorously or consistently defined set of 
names, and its 
detailed behavior may change across releases. For example, metaclass attributes are not in the result 
list when the 
argument is a class.

 代码实例

>>>dir()
['__builtins__','__doc__','__name__','__package__']
>>>import struct
>>>dir()
['__builtins__','__doc__','__name__','__package__','struct']
>>>dir(struct)
['Struct','__builtins__','__doc__','__file__','__name__','__package__','_clearcache','calcsize','error','pack',
'pack_into','unpack','unpack_from']
>>>class Person(object):
...  def __dir__(self):
...      return ["name","age","country"]
...
>>>dir(Person)
['__class__','__delattr__','__dict__','__dir__','__doc__','__format__','__getattribute__','__hash__','__init__',
'__module__','__new__','__reduce__','__reduce_ex__','__repr__','__setattr__','__sizeof__','__str__','__subclasshook__',
'__weakref__']
>>> tom= Person()
>>>dir(tom)
['age','country','name']

知识点扩展:

help()函数的作用

在使用python来编写代码时,会经常使用python自带函数或模块,一些不常用的函数或是模块的用途不是很清楚,这时候就需要用到help函数来查看帮助。

这里要注意下,help()函数是查看函数或模块用途的详细说明,而dir()函数是查看函数或模块内的操作方法都有什么,输出的是方法列表。

怎么使用help函数查看python模块中函数的用法

help()括号内填写参数,操作方法很简单。例如:

>>> help('dir')
Help on built-in function dir in module builtins:
dir(...)
  dir([object]) -> list of strings

  If called without an argument, return the names in the current scope.
  Else, return an alphabetized list of names comprising (some of) the attribut
es
  of the given object, and of attributes reachable from it.
  If the object supplies a method named __dir__, it will be used; otherwise
  the default dir() logic is used and returns:
   for a module object: the module's attributes.
   for a class object: its attributes, and recursively the attributes
    of its bases.
   for any other object: its attributes, its class's attributes, and
    recursively the attributes of its class's base classes.

到此这篇关于python中有帮助函数吗的文章就介绍到这了,更多相关python帮助函数详解内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python面向对象编程中关于类和方法的学习笔记
Jun 30 Python
Python中的左斜杠、右斜杠(正斜杠和反斜杠)
Aug 30 Python
IntelliJ IDEA安装运行python插件方法
Dec 10 Python
python随机在一张图像上截取任意大小图片的方法
Jan 24 Python
使用Python的OpenCV模块识别滑动验证码的缺口(推荐)
May 10 Python
总结Python图形用户界面和游戏开发知识点
May 22 Python
记录Python脚本的运行日志的方法
Jun 05 Python
Django中ajax发送post请求 报403错误CSRF验证失败解决方案
Aug 13 Python
使用Python代码实现Linux中的ls遍历目录命令的实例代码
Sep 07 Python
Python中url标签使用知识点总结
Jan 16 Python
详解Python 循环嵌套
Jul 09 Python
Django haystack实现全文搜索代码示例
Nov 28 Python
python中导入 train_test_split提示错误的解决
Jun 19 #Python
python中get和post有什么区别
Jun 19 #Python
python中setuptools的作用是什么
Jun 19 #Python
python怎么判断模块安装完成
Jun 19 #Python
Keras SGD 随机梯度下降优化器参数设置方式
Jun 19 #Python
python支持多继承吗
Jun 19 #Python
python和php哪个容易学
Jun 19 #Python
You might like
fleaphp下不确定的多条件查询的巧妙解决方法
2008/09/11 PHP
PHP 数组黑名单/白名单实例代码详解
2019/06/04 PHP
jQuery隔行变色与普通JS写法的对比
2013/04/21 Javascript
js网页实时倒计时精确到秒级
2014/02/10 Javascript
使用JS或jQuery模拟鼠标点击a标签事件代码
2014/03/10 Javascript
javascript使用switch case实现动态改变超级链接文字及地址
2014/12/16 Javascript
JQuery创建DOM节点的方法
2015/06/11 Javascript
CSS或者JS实现鼠标悬停显示另一元素
2016/01/22 Javascript
jquery easyUI中ajax异步校验用户名
2016/08/19 Javascript
Vue.js组件tabs实现选项卡切换效果
2016/12/01 Javascript
jQuery控制控件文本的长度的操作方法
2016/12/05 Javascript
webpack 2的react开发配置实例代码
2017/07/28 Javascript
highCharts提示框中显示当前时间的方法
2019/01/18 Javascript
用Python登录Gmail并发送Gmail邮件的教程
2015/04/17 Python
python中使用xlrd读excel使用xlwt写excel的实例代码
2018/01/31 Python
Python 中Pickle库的使用详解
2018/02/24 Python
Python Handler处理器和自定义Opener原理详解
2020/03/05 Python
Keras: model实现固定部分layer,训练部分layer操作
2020/06/28 Python
浅谈优化Django ORM中的性能问题
2020/07/09 Python
Python实现疫情地图可视化
2021/02/05 Python
实例教程 利用html5和css3打造一款创意404页面
2014/10/20 HTML / CSS
HTML5全屏(Fullscreen)API详细介绍
2015/04/24 HTML / CSS
HTML5不支持frameset的两种解决方法
2016/11/14 HTML / CSS
HTML5 Canvas 旋转风车绘制
2017/08/18 HTML / CSS
基于Html5 canvas实现裁剪图片和马赛克功能及又拍云上传图片 功能
2019/07/09 HTML / CSS
编写strcpy函数
2014/06/24 面试题
商场拾金不昧表扬信
2014/01/13 职场文书
实习生岗位职责
2014/04/12 职场文书
青年文明号口号
2014/06/17 职场文书
老龄工作先进事迹
2014/08/15 职场文书
学风建设演讲稿
2014/09/12 职场文书
事业单位聘任报告
2015/03/02 职场文书
捐款通知怎么写
2015/04/24 职场文书
《夹竹桃》教学反思
2016/02/23 职场文书
互联网创业商业模式以及赚钱法则有哪些?
2019/10/12 职场文书
python实现大文本文件分割成多个小文件
2021/04/20 Python