Answers for "remove multiple characters from string python"

8

delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
Posted by: Guest on April-08-2020
1

python remove multiple characters from string

import re
print(re.sub("e|l", "", "Hello people"))
"Ho pop"
Posted by: Guest on December-01-2020
2

remove special characters from string in python

''.join(i for i in string if i.isaplha()
Posted by: Guest on December-23-2020

Code answers related to "remove multiple characters from string python"

Python Answers by Framework

Browse Popular Code Answers by Language