python challenge 3 博客分类: python Python正则表达式F#
程序员文章站
2024-02-04 11:31:40
...
第三题比较简单,One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. 即一个小写字母,两边各有不多不少的三个大写字母。 用正则表达式搞定。
import re if __name__ == '__main__': # put the mess from the page source into 3.txt f = open('3.txt', 'r') text = f.read() list = re.findall('[^A-Z][A-Z]{3}[a-z][A-Z]{3}[^A-Z]', text) print(''.join(x[4:5] for x in list)) f.close();
上一篇: MySQL数据库优化实践
下一篇: 最简单的查询结果语句如何写
推荐阅读
-
python challenge 8 博客分类: python PythonHTML
-
python challenge 3 博客分类: python Python正则表达式F#
-
python challenge 5 博客分类: python PythonF#
-
python challenge 10 博客分类: python Python
-
python challenge 7 博客分类: python Python算法F#
-
python challenge 9 博客分类: python Python360J#
-
python challenge 11 博客分类: python Python
-
python challenge 7 博客分类: python Python算法F#
-
python challenge 6 博客分类: python PythonOOAIR网页游戏游戏
-
python challenge 4 博客分类: python PythonPHPJavaScriptF#HTML