Advertisement
Guest User

Untitled

a guest
Apr 9th, 2019
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. HTML:
  2. <div class="description">
  3. Planet Nine was initially proposed to explain the clustering of orbits
  4. Of Planet Nine's other effects, one was unexpected, the perpendicular orbits, and the other two were found after further analysis. Although other mechanisms have been offered for many of these peculiarities, the gravitational influence of Planet Nine is the only one that explains all four.
  5. </div>
  6.  
  7. BeautifulSoup code:
  8. description_box = soup.find('div', {'class':'description'})
  9. description = description_box.get_text(separator=" ").strip()
  10. print description
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement