3 回答
TA贡献1815条经验 获得超12个赞
使用dir(__builtins__)可以给出所有内建函数的list
你要使用哪个,打印该函数的__doc__即可知道其用法
比如
>>> dir(map)
['__call__', '__class__', '__cmp__', '__delattr__', '__doc__', '__getattribute__', '__hash__', '__init__', '__module__', '__name__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__str__']
>>> print map.__doc__
map(function, sequence[, sequence, ...]) -> list
Return a list of the results of applying the function to the items of
the argument sequence(s). If more than one sequence is given, the
function is called with an argument list consisting of the corresponding
item of each sequence, substituting None for missing values when not all
sequences have the same length. If the function is None, return a list of
the items of the sequence (or a list of tuples if more than one sequence).
>>>
至于你想要内建函数的详细说明,我是不会给你的(我也没有,呵呵)
但都在文档里面
不知道为什么你们不先看看文档再来问问题呢。。。
- 3 回答
- 0 关注
- 666 浏览
添加回答
举报