赞
踩
求心率的peason相关系数的时候遇到这个问题:
TypeError: 'float' object is not iterable
解决方法:
pre_label.extend(output)
type(output)
<class 'float'>
type(pre_label)
<class 'list'>
改成 pre_label.append(output) 就可以了
append 和 expand 区别在哪里
https://www.cnblogs.com/subic/p/6553187.html
我没从例子上看出来区别
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。