I have a HTML file and I want to find out the <tr> tags whose id begins with "tr" like "id=tr3245", "id=tr8796" etc.
<tr id=tr1256>
....
</tr>
<tr id=tr5847>
....
</tr>
<tr id=tr8746>
....
</tr>
<tr id=tr9844>
....
</tr>
How can I do this with "beautiful soup"?