Python 3.x 如何检查jupyter笔记本中用户定义函数的详细信息?

Python 3.x 如何检查jupyter笔记本中用户定义函数的详细信息?,python-3.x,jupyter-notebook,Python 3.x,Jupyter Notebook,我试图在jupyter笔记本中查看用户定义函数的详细信息。我试过了!Shift+Tab,但这不起作用。我认为这是一个命令,用于查看内置函数的详细信息,如何在…中检查所需内容。您可以使用内置的inspect库执行此操作 def hello_world(): print("hello_world") import inspect source = inspect.getsource(hello_world) print(source) 可以使用内置的inspect库执行

我试图在jupyter笔记本中查看用户定义函数的详细信息。我试过了!Shift+Tab,但这不起作用。我认为这是一个命令,用于查看内置函数的详细信息,如何在…中检查所需内容。

您可以使用内置的inspect库执行此操作

def hello_world():
   print("hello_world")

import inspect
source = inspect.getsource(hello_world)
print(source)

可以使用内置的inspect库执行此操作

def hello_world():
   print("hello_world")

import inspect
source = inspect.getsource(hello_world)
print(source)