df['Produit'].mean()\.reset_index()\.sort_values(by='Produit')
what does '\' means in this code ?
Thanks for your answers !
df['Produit'].mean()\.reset_index()\.sort_values(by='Produit')
what does '\' means in this code ?
Thanks for your answers !
In this makes more sense like this:
df['Produit'].mean()\
.reset_index()\
.sort_values(by='Produit')
where the '', backslash is a line continuation characters.