标题: [问题求助] 【已解决】下面Python代码运行报错 求报错原因 [打印本页]
作者: c755731262 时间: 2015-11-9 23:46 标题: 【已解决】下面Python代码运行报错 求报错原因
本帖最后由 c755731262 于 2015-11-12 02:15 编辑
- # -*- coding:UTF-8 -*-
- import re
- #p=re.compile(r'(abc)\1')
- #m=p.match('abcabcab')
- #print (m.group(0))
- #print (m.group(1))
- #print (m.group())
- p=re.compile(r'(?p<one>abc)(?p=one)')
- m=p.search('abcabcab')
- print (m.group('one'))
复制代码
作者: c755731262 时间: 2015-11-9 23:54
回复 1# c755731262
字母p要大写,才不会报错,但不能输出 print (m.group(2))第二个分组所对应的内容
作者: 依山居 时间: 2015-11-10 08:31
你先看看资料吧。- """
- Python正则表达式
- http://www.runoob.com/python/python-reg-expressions.html
-
- Python正则表达式指南
- http://www.cnblogs.com/huxi/archive/2010/07/04/1771073.html
-
- """
-
- import re
- a="abcabcab"
-
- reg=re.compile(r"(abc)\1")
- aresult=re.match(reg,a)
- print(aresult)
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |