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