摘要: import re string = "hellomypythonhispythonourpythonend" # 源字符串 result_not_use_pre = re.findall('.py.', string) # 未用预编译 print(result_not_use_pre) print 阅读全文