import pandas as pd


#创建列表对象
v = [1,2,3]
k = ['a','b','c']
c = ['序号']
sr = pd.Series(v,index=k)
df = pd.DataFrame(v,index=k,columns=c)
print("创建二维数组对象:\n" + str(df))

print("行显式索引:\n" + str(df.loc['a']))
print("行隐式索引:\n" + str(df.iloc[0]))
print("列显式索引:\n" + str(df.loc['a':'c','序号']))
print("列隐式索引:\n" + str(df.iloc[0]))
print("提取二位对象的行:\n" + str(df.loc[:,'序号']))


已连接到 pydev 调试器(内部版本号 252.28238.29)创建二维数组对象:
序号
a 1
b 2
c 3
行显式索引:
序号 1
Name: a, dtype: int64
行隐式索引:
序号 1
Name: a, dtype: int64
列显式索引:
a 1
b 2
c 3
Name: 序号, dtype: int64
列隐式索引:
序号 1
Name: a, dtype: int64
提取二位对象的行:
a 1
b 2
c 3
Name: 序号, dtype: int64

posted on 2025-11-30 11:11  偷懒的阿贤  阅读(0)  评论(0)    收藏  举报