I would like to convert my series into strings :
s = pd.Series({'A':[10,'héllo','world']})
to something like this
s = pd.Series({'A':['10','héllo','world']})
But whithout using iteration. I tried to used pandas.DataFrame.astype but it didn't seem to work.
Thanks a lot for your help