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.
我正在尝试在 Windows Powershell 上运行以下代码,但它给出了错误“模块不可调用”。
import whois w = whois.whois('yahoo.com') print w
我究竟做错了什么?我什至 pip 安装了 whois 模块。还是没有区别。
请帮忙。
whois 文档似乎已过时;将行更改为
w = whois.query('yahoo.com')
您可以help(whois)在交互式终端中(之后import whois)查看更多最新文档。
help(whois)
import whois