how to remove only 1 letter from a word in python code example
Example: delete certain characters from a string python
for char in line:
if char in " ?.!/;:":
line.replace(char,'')
for char in line:
if char in " ?.!/;:":
line.replace(char,'')