python function remove every 3 characters from every line 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"