Pandas normalise les lignes à la valeur maximale
# credit to the Stack Overflow user in the source link
df.apply(lambda x: x/x.max(), axis=1)
wolf-like_hunter
# credit to the Stack Overflow user in the source link
df.apply(lambda x: x/x.max(), axis=1)