remove string element python code example
Example 1: remove from string python
"Str*ing With Chars I! don't want".replace('!','').replace('*','')
Example 2: how to remove all characters from a string in python
s = 'abc12321cba'
print(s.replace('a', ''))
Example 3: remove a part of a string python
url = 'abcdc.com'
print(url.replace('.com',''))
Example 4: remove a part of a string python
import re
url = 'abcdc.com'
url = re.sub('\.com$', '', url)