Guest User

Untitled

a guest
Apr 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. for t in df.index.values:
  2. print(df[:t])
  3.  
  4. for t in df.index.values:
  5. print(df[t])
  6.  
  7. for t in df.index:
  8. print(df.loc[t])
Add Comment
Please, Sign In to add comment