Newbie backreference question



Hi,
In perl I can do something like:

$a = 'test string';
$a =~ /test (\w+)/;
$b = $1;
print $b . "\n";

and my output would be "string".

How might this snippet be written in python?

Thanks to all...
.