Guest User

Untitled

a guest
Nov 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. from bs4 import BeautifulSoup
  2. from urllib.request import urlopen
  3. url='https://simple.wikipedia.org/wiki/List_of_U.S._states'
  4. web=urlopen(url)
  5. source=BeautifulSoup(web, 'html.parser')
  6. table=source.find('table', {'class': 'wikitable sortable jquery-tablesorter'})
  7. abbs=table.find_all('b')
  8. print(abbs.get_text())
Add Comment
Please, Sign In to add comment