I have a pandas series:
names = pd.Series([ \'Andre Agassi\', \'Barry Bonds\', \'Christopher Columbus\', \'Daniel Defoe\', \'Emilio Estevez\', \'Fred Flintstone\
Use .map combined with string methods like below:
names.map(lambda s: s.split()[1] + ', ' + s.split()[0])