Python Pandas convertit la série en pourcentage

df[['PercentageSplit']] = ( 100 * df[['PercentageSplit']] ).round(2).astype(str) + "%" # The rounding is optional
Powerful Penguin