码迷,mamicode.com
首页 > 其他好文 > 详细

pandas中DataFrame逐行读取的方法

时间:2019-01-15 14:07:10      阅读:1387      评论:0      收藏:0      [点我收藏+]

标签:读取   val   span   tab   ram   实验   print   idt   black   

1

2

3

4

5

6

import pandas as pd

dict=[[1,2,3,4,5,6],[2,3,4,5,6,7],[3,4,5,6,7,8],[4,5,6,7,8,9],[5,6,7,8,9,10]]

data=pd.DataFrame(dict)

print(data)

for indexs in data.index:

 print(data.loc[indexs].values[0:-1])

   

实验结果:

   

 0 1 2 3 4 5

0 1 2 3 4 5 6

1 2 3 4 5 6 7

2 3 4 5 6 7 8

3 4 5 6 7 8 9

4 5 6 7 8 9 10

[1 2 3 4 5]

[2 3 4 5 6]

[3 4 5 6 7]

[4 5 6 7 8]

[5 6 7 8 9]

   

   

   

   

pandas中DataFrame逐行读取的方法

标签:读取   val   span   tab   ram   实验   print   idt   black   

原文地址:https://www.cnblogs.com/jiqima/p/10270786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!