split a dataframe into 2 in python code example
Example: split pandas dataframe in two
df_new1, df_new2 = df[:10, :], df[10:, :] if len(df) > 10 else df, None
df_new1, df_new2 = df[:10, :], df[10:, :] if len(df) > 10 else df, None