标签:class lang bsp nbsp color lin asc hit 维数
1 from numpy import nonzero 2 x=array([[1,0,0], [0,2,0], [1,1,0]]) 3 print(x) 4 nonzero(x)
[[1 0 0] [0 2 0] [1 1 0]] (array([0, 1, 2, 2], dtype=int64), array([0, 1, 0, 1], dtype=int64))
标签:class lang bsp nbsp color lin asc hit 维数
原文地址:https://www.cnblogs.com/xiashiwendao/p/10360818.html