python常用包和模块-更新
Posted 白天黑夜每日c
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python常用包和模块-更新相关的知识,希望对你有一定的参考价值。
random.sample(sequence, k),从指定序列中随机获取指定长度的片断。sample函数不会修改原有序列
numpy.nonzero() Return the indices of the elements that are non-zero.
>>> a = np.array([[1,2,3],[4,5,6],[7,8,9]]) >>> a > 3 array([[False, False, False], [ True, True, True], [ True, True, True]], dtype=bool) >>> np.nonzero(a > 3) (array([1, 1, 1, 2, 2, 2]), array([0, 1, 2, 0, 1, 2]))
以上是关于python常用包和模块-更新的主要内容,如果未能解决你的问题,请参考以下文章