老实魔镜

文章
5
资源
0
加入时间
2年10月17天

统计list中满足条件的数的个数

要求:统计list weights['value']中满足条件的数的个数:>=0、<0的个数分别是多少解决方法:np.sum(list(map(lambda x: x >= 0, weights['value'])))