I have a very large Dataframe with more than 3000 columns. Column names starts with items_0_**** | items_0_**** | items_1_**** | items_1_**** and so on up to items_99_*** .
I want to Split my Large DataFrame in such a way that items_0_*** in one Dataframe, items_1_**** in one Dataframe and so up to items_99_**** in one DataFrame.
So Finally I need to get 100 Data Frames.
Column names starting with items_0_ must be in one Dataframe.
Column names starting with items_1_ must be in another Dataframe.
.
.
.
Column names starting with items_99_ must be in another Dataframe.
Any help is appreciated.