博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python使用inspect查看代码参数
阅读量:4979 次
发布时间:2019-06-12

本文共 1316 字,大约阅读时间需要 4 分钟。

使用import inspect查看python 类的参数和模块、函数代码

 文件就是最小的模块,文件夹是比较大的模块。

文件里面可以包含类,函数。

函数可以执行一个操作,多个函数组合在一起可以写为一个模块,根据不同事物写成一个类,这个类包含几个行为写成几个类内的函数,也可以将这些作为一个文件。

主要步骤是将文件路径设置到系统,再将文件作为模块引入,再开始查看文件里面的内容。

 

首先,写了一个函数

def h():    print "hello"def hm(m,k):    print m, kclass w(object):    def __init__(a, self):        name =a    def g(self):        print name,"hello world!"

保存在路径C:\下,起个名字叫hello.py

打开python shell 窗口,将这个路径加入到系统路径里。命令如下

import sys

sys.path.append('C:/')

将文件当做一个模块引入。

import hello

import inspect

 

查看整个模块hello的源代码: inspect.getsource(hello)  整个样子不好看,需要print inspect.getsource(hello)

查看模块hello里面wo这个类的全部代码  print inspect.getsource(hello.w)

查看模块内某个函数的代码: print inspect.getsource(hello.h)

查看模块内某个类中函数的代码 print inspect.getsource(hello.w.g)

 

查看模块中某个函数的参数的代码:inspect.getargspec(hello.hm)

查看模块中类的参数代码 inspect.getargspec(hello.w.__init__)   #这里还是查看类的初始定义函数。

查看类中函数参数代码 inspect.getargspec(hello.w.g)

查看模块路径 inspect.getabsfile(hello)  

查看文件夹模块中某个类的路径 inspect.getabsfile(。。。)#结果是显示类的初始定义函数__init__.py的位置。

 

 

 >>> inspect.getabsfile(django.db)

'c:\\python27\\lib\\site-packages\\django-1.7.1-py2.7.egg\\django\\db\\__init__.py'

综上,最重要的是要记住,

查看全部代码 inspect.getsource(模块.函数)或者(模块.类.函数)

查看函数参数 inspect.getargspec(...)   查看类的参数,则括号里为(模块.类.__init__)

查看函数的位置 inspect.getabsfile(...) 

 

这些应该够学习用了。以后有什么再补充。

转载于:https://www.cnblogs.com/nemolmt/p/6701024.html

你可能感兴趣的文章
我对应用软件——美团的看法
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>
单片机复位电路
查看>>
php json_decode失败,返回null
查看>>
3-day3-list-truple-map.py
查看>>
Edit控件显示多行文字
查看>>
JS第二周
查看>>
dataTable.NET的search box每輸入一個字母進行一次檢索的問題
查看>>