how to remove 2 letters on a python string code example
Example 1: delete certain characters from a string python
for char in line:
if char in " ?.!/;:":
line.replace(char,'')
Example 2: remove a part of a string python
url = 'abcdc.com'
print(url.replace('.com',''))