1、only size-1 arrays can be converted to Python scalars
问题来源:需要把一个float数组A转为int,于是直接在代码中写了 B=int(A),从而报错。
原因:int函数只能对单个数字进行,而不能对一个数组进行
解决方法:用map函数,对数组中的每个元素整数化
B=list( map( int , A ) )
2、list indices must be integers or slices, not tuple
(7条消息) TypeError: list indices must be integers or slices, not tuple_yp736628082的博客-CSDN博客