how to remove chars from string by specifying first and last char of removal python code example
Example 1: how to remove first letter of a string python
s = "hello"
print s[1:]
Example 2: delete certain characters from a string python
for char in line:
if char in " ?.!/;:":
line.replace(char,'')