====== BeautifulSoup 技巧 ====== ===== 得到某一节点下的所有文本===== texts = soup.findAll(text=True) all_text = "\n".join(texts)