python 文档字符串不起作用?

发布于 2024-12-02 05:19:26 字数 262 浏览 3 评论 0原文

def myfunc():
    """ My docstring """
    print "hello"

help(myfunc)

我使用的是

'more' is not recognized as an internal or external command,
operable program or batch file.

Windows 7 64 位、Python 2.6

def myfunc():
    """ My docstring """
    print "hello"

help(myfunc)

I get

'more' is not recognized as an internal or external command,
operable program or batch file.

Windows 7 64bit, Python 2.6

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

偏闹i 2024-12-09 05:19:26

Python 的 help() 函数 在您的情况下尝试执行 更多命令。当安装更多时,它应该看起来像这样:

>>> help(myfunc)
Help on function myfunc in module __main__:

myfunc()
    My docstring

但您也可以

>>> print myfunc.__doc__
 My docstring

阅读文档字符串。

Python's help() function tries to, in your case, execute the more command. It should look something like this, when more is installed:

>>> help(myfunc)
Help on function myfunc in module __main__:

myfunc()
    My docstring

But you can also do

>>> print myfunc.__doc__
 My docstring

to read the docstring.

打小就很酷 2024-12-09 05:19:26

我认为问题不在于您的 Windows 操作系统没有 more,而是 Windows 7 UAC(用户访问控制)以 用户模式 运行您的命令行窗口,而不是管理模式。 要解决该问题,请以管理员身份运行 cmd,然后从该窗口运行 python。那应该解决它。我假设您已经在 C:\Windows\System32\more.com 中找到了 more 程序

I think that the problem is not that your Windows OS doesn't have more but that Windows 7 UAC (User Access Control) runs your command line window in user mode instead of admin mode. To solve the problem, run cmd as an administrator and then run python from that window. That should take care of it. I am assuming that you have already located the more program in C:\Windows\System32\more.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文