Task
Given this HTML scraped into `table`:
<table>
<tr><th>Item</th><th>Price</th></tr>
<tr><td>Pen</td><td>$3</td></tr>
<tr><td>Pad</td><td>$12</td></tr>
</table>
What does
for tr in table.find_all("tr")[1:]:
cells = [td.get_text(strip=True) for td in tr.find_all("td")]
print(cells)
print? Type the two list literals on two lines.