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.
某些工具或库可以在 Python 源代码中找到函数/变量 ID 的声明吗?所以我告诉这个工具或库(在我的 Windows 应用程序中使用它)ID 名称、源 Python 文件名,并且工具会找到 id 声明的位置。
检查模块。_ inspect特别是,inspect.getsourcelines()和inspect.getsourcefile()。
inspect
inspect.getsourcelines()
inspect.getsourcefile()