Files
Python/Code/Python14Code/com/twowater/test6.py

14 lines
148 B
Python
Raw Normal View History

2017-12-26 11:14:36 +08:00
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import re
a = 'pythonpythonpython'
# 组
findall = re.findall('(python){3}', a)
print(findall)