how to remove a character from a string python3 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,'')