Advertisement
Guest User

Untitled

a guest
Mar 11th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. from bs4 import BeautifulSoup as Soup
  2. soup = Soup(htm)
  3. td = soup.find_all("td")
  4. for t in td:
  5. print(t.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement