如何获得Python方法的帮助?

时间:2013-06-10 06:43:21

标签: python python-2.7 python-3.x

每当我在方法上使用help()时,我都会得到一个奇怪的输出。 例如,help(obj.readline)给出了以下输出:

Help on built-in function readline:

readline(...)

这就是我得到的全部。我不知道如何解释它。为什么没有关于这个方法的描述?有人可以向我解释发生了什么事吗?

1 个答案:

答案 0 :(得分:3)

这是奇怪的输出吗?

>>> f = open('data.txt')
>>> help(f.readline)
Help on built-in function readline:

readline(...)
    readline([size]) -> next line from the file, as a string.

    Retain newline.  A non-negative size argument limits the maximum
    number of bytes to return (an incomplete line may be returned then).
    Return an empty string at EOF.