当前位置: 代码迷 >> 综合 >> 报错TypeError: only length-1 arrays can be converted to Python scalars
  详细解决方案

报错TypeError: only length-1 arrays can be converted to Python scalars

热度:93   发布时间:2023-12-17 17:17:53.0

int(x)报错:TypeError: only length-1 arrays can be converted to Python scalars
因为此函数只能传一个值进去,而你传了一个数组进去
试试:
x.astype(int)或者np.vectorize(x)

  相关解决方案