<html>
<head>
<title>Hello, from tc.inq.com</title>
</head>
<body bgcolor=white>
<p>This is the home page for the inq.com. </p>
</body>
</html
Получить это то что в <\p>
Чтобы получилось так: var = "This is the home page for the inq.com."
Как по тегу отследить? Есть какие то приспособления, или нужно использовать find?
from bs4 import BeautifulSoup
html = '''<html>
<head>
<title>Hello, from tc.inq.com</title>
</head>
<body bgcolor=white>
<p>This is the home page for the inq.com. </p>
</body>
</html'''
soup = BeautifulSoup(html, 'html.parser')
print(soup.find('p').text)