Answers for "how do i strip multiple characters at once in python?"

2

python remove multiple characters from string

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

Code answers related to "how do i strip multiple characters at once in python?"

Python Answers by Framework

Browse Popular Code Answers by Language