Sorry for asking to simple, on mongoDB usually the function that work is Skip, but I get lost when looking pandas equivalent. My pandas query 1st-1000th for is
list1 = a['id'].head(1000)
But, I want to query the 1001st-2000th entry , 2001st-3000th entry, etc.
I'm expected the answer to be saved as df1
, df2
, ... , dfn
How suppose I do this?