Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个系统,我在其中不断试验函数的内容,然后运行程序。由于我经常打开很多终端窗口,所以有时我并不确切知道哪个版本的功能属于哪个终端窗口。
有没有办法将特定功能的源代码打印到终端?
好吧。感谢 Hoopdady 在 Stackoverflow 上提供了类似的问题。只是为未来的读者提供解决方案。我需要使用检查模块,并使用它的方法“getsource”我可以简单地将方法或函数的源打印到命令行。
import inspect import mymodule print inspect.getsource(mymodule.sayHello)
谢谢哈普达迪!