I created a 'new' column in the dataframe. Now I want to add this 'new' column between columns B and C. Please suggest how to do it.
df = pd.DataFrame({'A':[10,0,200,50,500],'B': [50,200,70,90,800],'C':[100,500,60,300,70]})
df['new'] = ((df['C'] - df['B'])/df['B']) * 100