1.Series属性及方法 Series是Pandas中最基本的对象,Series类似一种一维数组. 1.生成对象.创建索引并赋值. s1=pd.Series() 2.查看索引和值. s1=Series([1,2,3,4],index=['a','b','c','d'])s1运行结果: a 1 b 2 c 3 d 4 dtype: int64 3.Series有字典的功能. 'b' in s1 运行结果: True list(s1.iteritems()) 运行结果: [('a', 1), ('