Python entfernen Sie das Zeichen von String mit Ersatz ()

s = 'abc12321cba'

print(s.replace('a', ''))
Anxious Alligator