ValueError: invalid literal for int() with base 10: ‘ ‘解决办法整理总结
自己遇到的问题
print(int(str(round(np.float64(115.7754)))))
ValueError: invalid literal for int() with base 10: '116.0'
其实这个问题的出现是因为int() 函数在将str 类型的数据转换时报错的。在发现了这个问题之后,使用round() 函数将浮点数转化为整型之后在进行str 转化,但是还是一直在报错。所以将数据的格式打印出来发现,round() 函数对np.float() 类型转换有点问题。
print(round(np.float64(115.7754)))
print(round(np.float64(115)))
print(int(np.float64(115.7754)))
print(round(float(np.float64(115.7754))))
116.0
115.0
115
116
从上述代码可以看出,round() 函数对np.float() 的数据类型的转换有一些问题。可以使用上述两种方式解决。
总结
其实这个问题是一个很常见的问题,但是当时没有意识到np.float() 和round() 两者之间存在这样一个问题。所以也在网上找到一些其他人的问题,原因大致是相同的:在数据转换的时候出现了问题,有可能是含有其他符号或者其他字符,遇到这个问题要特别留意数据转换的细节