Python challenge One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. code example
Example: one small letter three big bodyguard
import re
print ''.join(re.findall('[^A-Z][A-Z]{3}([a-z])[A-Z]{3}[^A-Z]', open("data.txt").read()))