Spalte in jeder Zeile nach letzter Spalte teilen
df.iloc[:, 1:-1].divide(df.iloc[:,-1], axis = 'rows')
Graceful Gorilla
df.iloc[:, 1:-1].divide(df.iloc[:,-1], axis = 'rows')