Files
Python/Code/Python14Code/com/twowater/test6.py
347073565@qq.com 1a74b345e5 两点水
2017-12-26 11:14:36 +08:00

14 lines
148 B
Python

#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import re
a = 'pythonpythonpython'
# 组
findall = re.findall('(python){3}', a)
print(findall)