前言导读
自查函数可以帮助我们查看python所有对象的信息

一 dir()和help()说明:

#说明:
1 python内置了很多内置函数、类方法属性及各种模块。
2 当我们想要当我们想要了解某种类型有哪些属性方法以及每种方法该怎么使用时,
3 我们可以使用dir()函数和help()函数在python ide交互式模式下获得我们想要的信息。

dir():用来查询一个类或者对象所有属性,比如:
help():函数帮助我们了解模块、类型、对象、方法、属性的详细信息
    详细信息包括:类的创建方式、属性、方法

二 help()查看功能

1 查看python所有的关键字:help("keywords")
2 查看python所有的modules:help("modules")
3 查看python所有的modules中包含指定字符串的modules: help("modules yourstr")
4 查看python中常见的topics: help("topics")
5 查看python标准库中的module:import os.path + help("os.path")
6 查看python内置的类型:help("list")
7 查看python类型的成员方法:help("str.find") 
8 看查python内置函数:help("open")
9 查看数据类型  print type (变量名)   
10 查看python中的关键字  import keyword
                      keyword.kwlist

(本章完)

所有资源均有PDF目录版,如想获得请扫码关注右侧公众号自动获取