I would like to substract every column in my Dataframe by the column next to it, like this:
for l in list: df[l] = df[l].sub(df[l].shift(axis = 1))