python模块匹配,刚开始学,看到这看不懂了,帮看一下吧

code:

>>> match = re.match(‘hello[ \t]*(.*)world’,’hello python world’)
>>> match.group(1)
‘python ‘

发表评论