Guest User

Untitled

a guest
Jul 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import re
  2.  
  3. with open('3bigbodyguards.txt') as f:
  4. string = f.read()
  5. print(re.findall('(?:(?<![A-Z])[A-Z]{3})([a-z])(?:[A-Z]{3})(?![A-Z])', string, re.DOTALL))
Add Comment
Please, Sign In to add comment