标签: pandas dataframe
print(frame.ix[0]['titles'].values)
不返回任何内容而不是打印' abc'如果
print(frame)
是
0 'abc'
答案 0 :(得分:0)
基于您的方法
df.ix[0]['titles'] Out[1085]: 'abc'
我将使用iloc,因为 .ix已被弃用。
iloc
df.iloc[0].loc['titles'] Out[1091]: 'abc'