Take Off Character in Python String

s = 'abc12321cba'

print(s.replace('a', ''))
Disturbed Dove