how to concatenate two dataframes and create a list containing the MovieIDs in python code example
Example: concat dataframe from list of dataframe
import pandas as pd
df = pd.concat(list_of_dataframes)
import pandas as pd
df = pd.concat(list_of_dataframes)