Hello,
I want to be able to remove unwanted values from column headers. When you geocode it adds User_ to the beginning of every string. And for the end-user of the table, who's not a tech, this is very convoluted.

So, what I can do to change the values using Pandas on an excel table I want to be able to do using ArcPy on a feature class. Is this possible? From what I know of cursors you can only change field values. Thanks for any help.
#convert feature class to a table and remove unwanted characters
arcpy.conversion.TableToExcel(out_fc, 'geocode2.xlsx')
#Remove unwanted values from column headers (i.e. USER_) then save as a *.csv
import pandas as pd
df = pd.read_excel(ws + '\geocode2.xlsx')
df.columns = df.columns.str.replace('USER_', '')
df.to_csv(r'')