怎么看python函数源代码 怎么查看python函数源代码

主机教程 建站分享 2年前 (2022-11-26) 178次浏览

文章摘要:怎么看python函数源代码 怎么查看python函数源代码

在python中使用inspect.getsource函数查看函数源代码,具体方法如下: import ins […]

在python中使用inspect.getsource函数查看函数源代码,具体方法如下:

import inspect

def print_hh():

print('hh')

source = inspect.getsource(print_hh) # 查看自定义函数print_hh的源代码

print(source)

输出结果为:

def print_hh():

print('hh')


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:怎么看python函数源代码 怎么查看python函数源代码
文章链接:http://www.7966.org/post/14169.html
转载请注明出处

喜欢 (0)