I have a list of high schools. I would like to erase certain characters, words, and symbols from the strings.
I currently have:
df['schoolname'] = df['schoolname'].str.replace('high', "")
However, I would like to use a list so I can quickly replace high
, school
, /
, etc.
Any suggestions?
df['schoolname'] = df['schoolname'].str.replace(['high', 'school'], "")
does not work
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…