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.
当我右键单击一个函数然后选择“转到定义”时,会显示一个带有该函数的模块,但它只显示必须传递给它的参数,而且我看不到任何关于主体的内容功能。
这是我定义 时显示的内容itertools.dropwhile:
itertools.dropwhile
正如评论中提到的,VSCode 只能向您显示它可以访问的源代码,并且许多 Python 内置函数和 stdlib(包括itertools模块)是在编译后的 C 中实现的——没有源代码可以向您显示。
itertools