how ot remove many characters from a string 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"