遇到的问题---python---pandas新建空的dataframe报错dataframe type object ‘object‘ has no attribute ‘dtype‘

Posted 张小凡vip

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遇到的问题---python---pandas新建空的dataframe报错dataframe type object ‘object‘ has no attribute ‘dtype‘相关的知识,希望对你有一定的参考价值。

情况

处理一些数据,需要新建一个dataframe,后续再新增数据进去,使用代码如下:

    df=pd.DataFrame(columns=[\'code\', \'name\'])
    for row in results:
        i= i+1
        print(i)
        print("总数%s, 当前%s 编码%s" % (str(cursor.rowcount), str(i), row[0]))
        codeValue = row[0]
        nameValue = row[1]
		temp=[{\'code\':codeValue,\'name\':nameValue}]
		df=df.append(temp)

报错AttributeError: type object ‘object’ has no attribute \'dtype’如下:

Traceback (most recent call last):
 File "/Users/joe/workspace/stock/tianyan_py/tianyan_py/__init__.py", line 72, in <module>
   init()
 File "/Users/joe/workspace/stock/tianyan_py/tianyan_py/__init__.py", line 32, in init
   get_today_by_xueqiu()
 File "/Users/joe/workspace/stock/tianyan_py/tianyan_py/main.py", line 754, in get_today_by_xueqiu
   df=pd.DataFrame(colu

以上是关于遇到的问题---python---pandas新建空的dataframe报错dataframe type object ‘object‘ has no attribute ‘dtype‘的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法使用 Python Pandas 读取所有行直到遇到空行

遇到问题--python--pandas--dataframe进行groupby之后导出数据to_excel内容为空

遇到问题--python--pandas--dataframe进行groupby之后导出数据to_excel内容为空

遇到问题--python--pandas--dataframe进行groupby之后导出数据to_excel内容为空

python pandas怎么跳读sheet?

读取大型 csv 文件、python、pandas 的随机行