aboutsummaryrefslogtreecommitdiff
path: root/challenge-001/zapwai/python/ch-1.py
blob: 4f1cf9392fc6a147478f3781c4a21164ce497c95 (plain)
1
2
3
4
5
6
import re
str = "Perl Weekly Challenge"
print("Input:", str)
print("Output:", re.sub(r'e', 'E', str))
oc = re.findall(r'e', str)
print("e occurred", len(oc), "times.")