Obtenez tous les tags de paragraphe BeautifulSoup

soup = BeautifulSoup('html_file', 'html.parser')
all_paragraphs = soup.find_all('p')
Tejas Naik