how to remove 2 lettered words 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"