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

14 lines
148 B
Python

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