re.findall---find letters
时间:2010-01-24 来源:angelia_liu
Return all non-overlapping matches of pattern in string, as a list of strings. The string is scanned left-to-right, and matches are returned in the order found. If one or more groups are present in the pattern, return a list of groups; this will be a list of tuples if the pattern has more than one group. Empty matches are included in the result unless they touch the beginning of another match.
findall 匹配串中所有符合条件的串,并以LIST的形式返回。以下这个程序用来匹配前后(只)有三个大写字母的小写字母。如“sEFCgETYt”中的g.
'''This program use for select the lowcharacter which have three capital letters before and after |