Objective : To remove the "Copy of " from all the rows of a table

Above picture shows the initial situation
Below is the code I am running
for row in cv.collection.get_rows(search="Copy of"):
row.name=row.name[8:-1] #to remove "Copy of "
It gives the following result
