one small letter three big bodyguard 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()))
import re
print ''.join(re.findall('[^A-Z][A-Z]{3}([a-z])[A-Z]{3}[^A-Z]', open("data.txt").read()))