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

发布时间:2024年01月16日

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

文章来源:https://blog.csdn.net/weixin_44245188/article/details/135631222
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。