If you want to post-process your list, you can apply encode('ascii', 'ignore')
over it:
my_list = [
'Central Parku202c',
'Top of the Rock',
'Statue of Libertyu202c',
'Brooklyn Bridge'
]
my_list = [e.encode('ascii', 'ignore').decode("utf-8") for e in my_list]
print(my_list)
And the output should be:
['Central Park', 'Top of the Rock', 'Statue of Liberty', 'Brooklyn Bridge']
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…