How can I extract a particular data (ie, 39.74% in this case) followed by "Proj. EPS Growth (F1)" in the following HTML example with BeautifulSoup? I'm completely new to Python. Thank you!
<div class="high_low_table" id="high_low_table">
</table>
<tbody>
<tr>
<th class="alpha" scope="row">Proj. EPS Growth (Q1) </th>
<td>19.56%</td>
</tr>
<tr>
<th class="alpha" scope="row">Proj. EPS Growth (F1) </th>
<td>39.74%</td>
</tr>
</tbody>
</table>
</div>
from bs4 import BeautifulSoup
import requests
page = requests.get(url)
soup = BeautifulSoup(page.content, 'lxml')
data = soup.find('div', class_="high_low_table").text
<table>and not</table>. See w3schools.com/html/html_tables.asp<th>text?