Ввод
<p>
The very <em>first</em> task is to find the beginning of a paragraph.
</p>
<p>
Then you have to find the end of the paragraph
</p>
Ожидаемый первый выход (как я использую жадный квантификатор)
<p>
The very <em>first</em> task is to find the beginning of a paragraph.
</p>
<p>
Then you have to find the end of the paragraph
</p>
Код, используемый для Жадность, как показано ниже
text = '''
<p>
The very <em>first</em> task is to find the beginning of a paragraph.
</p>
<p>
Then you have to find the end of the paragraph
</p>
'''
pattern=re.compile(r'\<p\>.*\<\/p\>')
data1=pattern.match(text,re.MULTILINE)
print('data1:- ',data1,'\n')
Ожидаемый второй результат - (как я использую квантификатор Lazy)
<p>
The very <em>first</em> task is to find the beginning of a paragraph.
</p>
Код, используемый для ленивых, - как показано ниже