同時獲取同一等級下多個class值的節點的方法
方法:
tr_= soup.find("div", class_="mod_cont fcolor30").find_all("tr", attrs={"class":["md_tr font14 bgcolor-s","md_tr font14 bgcolor"]})
同時獲取兩個不同的class.例如:
當BeautifulSoup時,打算獲取兩個class值不同的tr時,可以使用
.find_all("tr", attrs={"class":["md_tr font14 bgcolor-s","md_tr font14 bgcolor"]}
的格式。