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\'] =
Use regex (seperate the strings by |):
|
df['schoolname'] = df['schoolname'].str.replace('high|school', "")