create different list variable names using a for loop
I am looking to use cross validation for 3 different ML classifiers and would like to get all results without repetitive code
model_01 = RandomForestClassifier(max_depth = 2, random_state = 0)
model_02 = XGBClassifier(max_depth = 2, n_esti…