当前位置:  开发笔记 > 编程语言 > 正文

Python AttributeError:'str'对象没有属性'DataFrame'

如何解决《PythonAttributeError:'str'对象没有属性'DataFrame'》经验,为你挑选了1个好方法。



1> Karl Knechte..:

错误意味着它的内容:

AttributeError: 'str' object has no attribute 'DataFrame' 
      ^           ^                                ^
the kind of error |                                |
       the thing you tried to use      what was missing from it

它抱怨的线:

df = pd.DataFrame(date, columns = ['Date'])
     ^      ^
     |   the attribute the error said was missing
the thing the error said was a string

在我上面添加几行代码之前,一直没有问题

显然,在"上面几行代码"中的某个地方,你导致pd了一个字符串.当然,当我们查看这几行代码时,我们会发现:

pd = PDays[j]
^       ^
|    the string that you're making it into
the thing that you're making a string

推荐阅读
重庆制造漫画社
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有