例如——df= A B C 1 2 3 2 4 5 2 1 3我想访问没有标题的第二行如果我这样做,df.iloc[[1]]它会给我 - A B C 2 4 5作为输出,但我想要2 4 5作为输出。不需要列标题,最终我会将其存储在列表中。
2 回答
慕慕森
TA贡献1856条经验 获得超17个赞
试试下面的片段以获得不同类型的结果,如你所愿,
print df.iloc[1].values #<type 'numpy.ndarray'> [2 4 5]
print df.iloc[1].values.tolist() #<type 'list'> [2, 4, 5]
print ' '.join(map(str,df.iloc[1].values.tolist())) #<type 'str'> 2 4 5
添加回答
举报
0/150
提交
取消