当只有一个值时,Pandas数据帧不返回任何内容

时间:2018-02-12 03:43:22

标签: pandas dataframe

print(frame.ix[0]['titles'].values)

不返回任何内容而不是打印' abc'如果

,则终止程序
print(frame)

0    'abc'

1 个答案:

答案 0 :(得分:0)

基于您的方法

df.ix[0]['titles']
Out[1085]: 'abc'

我将使用iloc,因为 .ix已被弃用。

df.iloc[0].loc['titles']
Out[1091]: 'abc'