本文介绍了对象 pandas 没有属性名称系列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

import pandas as pd
numbers = {1,2,3,4,5}
ser = pd.Series(numbers)
print ser

我用python为pandas系列编写此代码.但这给了

I write this code in python for pandas series. but it's giving this

请帮助我

推荐答案

我的问题中的错误是文件名.

The Error in my problem is the file name.

我将文件另存为pandas.py,这就是我收到错误消息的原因.

I save the file as pandas.py that's why i got the error.

这篇关于对象 pandas 没有属性名称系列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 07:36