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