How to split a dataframe into exactly n parts, irrespective of size of the frame?
if I try: n = int(len(df.index)/662) chunk_list = [df [ i : i+n ] for