首页 > 编程语言 > 详细

在Python中使用help帮助

时间:2014-10-19 00:00:56      阅读:458      评论:0      收藏:0      [点我收藏+]

在Python中使用help帮助

>>> import numpy
>>> help(numpy.argsort)
Help on function argsort in module numpy.core.fromnumeric:


argsort(a, axis=-1, kind=‘quicksort‘, order=None)
    Returns the indices that would sort an array.
    
    Perform an indirect sort along the given axis using the algorithm specified
    by the `kind` keyword. It returns an array of indices of the same shape as
    `a` that index data along the given axis in sorted order.

在Python中使用help帮助

原文:http://www.cnblogs.com/yyxayz/p/4034034.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!