string delete char python code example
Example 1: take off character in python string
s = 'abc12321cba'
print(s.replace('a', ''))
Example 2: remove a part of a string python
import re
url = 'abcdc.com'
url = re.sub('\.com$', '', url)
s = 'abc12321cba'
print(s.replace('a', ''))
import re
url = 'abcdc.com'
url = re.sub('\.com$', '', url)