Python不显示附加帮助

问题描述 投票:1回答:1

我对编码非常陌生,从python开始。知道如何寻求帮助已经对我有很大帮助这是我的问题:为什么在解释器中找不到'append()'函数的任何帮助?

对不起,我知道这是基本的。

python append
1个回答
1
投票

您可以help('list.append')help(list.append)

help('list.append')

输出:

Help on method_descriptor in list:

list.append = append(self, object, /)
    Append object to the end of the list.

您也可以检查docs

© www.soinside.com 2019 - 2024. All rights reserved.