AttributeError: 'float' object has no attribute 'to_csv'
时间: 2023-11-05 08:01:20 浏览: 322
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是由于在一个float对象上调用了to_csv方法,而float对象没有该方法。在这种情况下,可能是因为你的变量名与pandas库中的方法名重复了,例如将一个名为to_csv的float变量覆盖了pandas库的to_csv方法。请确保你没有在代码中将变量名命名为to_csv,以避免与库方法名冲突。
阅读全文