从一大堆字母里找出两边都刚好有3个大写字母的小写字母
详细描述:http://www.pythonchallenge.com/pc/def/equality.html

解决方案:

Python:
>>> import re
>>> re.findall(r'[a-z][A-Z][A-Z][A-Z][a-z][A-Z][A-Z][A-Z][a-z]', text)

版权所有 罗明
posted on 2008-05-08 12:50 罗明 阅读(1319) 评论(0)  编辑  收藏 所属分类: StudyPython

只有注册用户登录后才能发表评论。


网站导航: