摘要: re模块的其它知识 正则表达式起别名及分组机制 collections模块 time与datetime模块 random模块 re模块的其它知识 impore re ret = re.findall('a(b)c','abcabcabcabc') print(ret) 得到的结果是['b','b', 阅读全文