Python удалить символ из строки с помощью replys ()
s = 'abc12321cba'
print(s.replace('a', ''))
Anxious Alligator
s = 'abc12321cba'
print(s.replace('a', ''))