是否可以使用python shell读取Python文件的Doc Strings?

时间:2017-08-05 14:02:07

标签: python-3.6

我想知道是否有任何方法可以从命令行读取python文件中的doc字符串,在导入之前,或者使用任何Ipython或Python内核,就像'man'命令一样。< / p>

1 个答案:

答案 0 :(得分:1)

您可以execute some python code from the command line,因此给定名为my_module.py的模块和名为my_function的函数,以下内容:

python -c "from my_module import my_function;print my_function.__doc__"

将打印出docstring