I need to insert multiple new columns in between columns in a dataframe
Input dataframe:
PC GEO BL RL JanTOTAL BL RL FebTOTAL
A USA 1 1 2 1 1 2
B IND 1 1 2 1 1 2
Expected Output dataframe
PC GEO Jan-Month BL RL JanTOTAL Feb-Month BL RL FebTOTAL
A USA 2019-01-01 1 1 2 2019-02-01 1 1 2
B IND 2019-01-01 1 1 2 2019-02-01 1 1 2