Регулярные выражения


import re
match = re.match('Hello (.*) world','Hello Python world')
python = match.group(1)