(file,features="lxml") #find_all用法 tags=soup.find_all(re.compile('^b')) tags=soup.find_all('b') tags=soup.find_all(['a','b']) tags=soup.find_all(has_class_no_id) tags=soup.find_all(True) tags=soup.find_all(href=not_lacie) for tag in tags: print(tag.name) def ...
soup=BeautifulSoup(file,features="lxml") #find_all用法 tags=soup.find_all(re.compile('^b')) tags=soup.find_all('b') tags=soup.find_all(['a','b']) tags=soup.find_all(has_class_no_id) tags=soup.find_all(True) tags=soup.find_all(href=not_lacie) for tag in tags: print(tag....
soup=BeautifulSoup(file,features="lxml") #find_all用法 tags=soup.find_all(re.compile('^b')) tags=soup.find_all('b') tags=soup.find_all(['a','b']) tags=soup.find_all(has_class_no_id) tags=soup.find_all(True) tags=soup.find_all(href=not_lacie) for tag in tags: print(tag....