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 .pyd 模块(C++),所以我不能只在文本编辑器中打开它来找出它包含的内容。那我该怎么办?我只想知道里面的函数名。
Python有充分的反思。
您可以执行以下操作(对于 modulename.pyd)
python >>> import modulename as mtmp >>> dir(mtmp) >>> help(mtmp)
编辑:按照 Mike Graham 的建议添加帮助命令