strip multiple characters from string in python code example
Example: python remove multiple characters from string
import re
print(re.sub("e|l", "", "Hello people"))
"Ho pop"
import re
print(re.sub("e|l", "", "Hello people"))
"Ho pop"