!-- flowchart 箭头图标 勿删 --
import re
text = 'to to to how are you a to to'
result = re.findall('to', text)
print(result)
import re