how to delete char in string python code example
Example 1: take off character in python string
s = 'abc12321cba'
print(s.replace('a', ''))
Example 2: remove from string python
"Str*ing With Chars I! don't want".replace('!','').replace('*','')
s = 'abc12321cba'
print(s.replace('a', ''))
"Str*ing With Chars I! don't want".replace('!','').replace('*','')