Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <span class="crwActualPrice">
  2. <span style="text-decoration: inherit; white-space: nowrap;">
  3. <span class="currencyINR">
  4. &nbsp;&nbsp;
  5. </span>
  6. <span class="currencyINRFallback" style="display:none">
  7. Rs.
  8. </span>
  9. 13,990.00
  10. </span>
  11. </span>
  12.  
  13. dprice = each_result.find_all("span", class_="crwActualPrice")
  14. for each_price in dprice:
  15. money_str = each_price.string
  16. print(money_str)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement