提问帖
为什么 help() 函数无法显示append与extend的作用,而是显示其“没有被定义“? help(list.append)extend同理 append和extend都是list类中的方法,单独拿出来没有定义
在help中要带着list类
>>> help(list.append)
Help on method_descriptor:
append(self, object, /)
Append object to the end of the list.
>>> help(list.extend)
Help on method_descriptor:
extend(self, iterable, /)
Extend list by appending elements from the iterable. 一般遇到这种不知道的,浏览器打开搜一下就好了,
例如搜索:appendpython
就出来了
经常看到的有个菜鸟教程的网站,挺全的
append,和extend是方法,不是bif
页:
[1]