Posts by isabele alves pereira • 39 points
2 posts
-
0
votes0
answers39
viewsQ: I would like to iterate on a Beautiful Soup object, but at the end it gives an error in find() because it is a list. How could I solve this error?
import requests from bs4 import BeautifulSoup import pandas as pd def get_object(url): soup = BeautifulSoup(requests.get(url).content,'html.parser') return…
-
2
votes2
answers328
viewsQ: Select column numpy no for
I’ll be very brief. I’m just wondering how to put in for when the values of the first column of the matrix is less than zero, the values of the second column will be a. from scipy import stats from…