code:
>>> match = re.match(‘hello[ \t]*(.*)world’,’hello python world’)
>>> match.group(1)
‘python ‘
A programmer’s note boke for work and life
code:
>>> match = re.match(‘hello[ \t]*(.*)world’,’hello python world’)
>>> match.group(1)
‘python ‘