import re
words = {"blue", "ah", "sky", "wow", "neat"}
rx = re.compile(r'(?:[^\W\d_]{2})+')
print( [w for w in words if rx.fullmatch(w)] )