当前位置: 代码迷 >> 综合 >> AttributeError: 'NoneType' object has no attribute 'columns'
  详细解决方案

AttributeError: 'NoneType' object has no attribute 'columns'

热度:49   发布时间:2023-12-15 17:41:11.0

你定义了一个或者几个处理dataframe的函数?

 

出现这个错误,可能是你写的函数没有返回值。

 

试着在函数里面都加上 return dataframe1 这一句作为函数最后一句,表示函数的返回值还是一个dataframe。

dataframe1 是你在函数中定义的被处理的dataframe对象,或参数。叫什么名字取决于你的函数。

 

然后上面这个函数处理完的dataframe才能接着用另外一个处理dataframe的函数进行处理。

  相关解决方案