如果我解析使用BS4一個網站,並從它的源代碼,我想打印文本「+ 26.67%」beautifulsoup4,使用.find_all的正確方法?
<font color="green"><b><nobr>+26.67%</nobr></b></font>
我已經與.find_all()
命令(http://www.crummy.com/software/BeautifulSoup/bs4/doc/)無濟於事瞎搞。搜索源代碼並打印文本的正確方法是什麼?
我的代碼:
import requests
from bs4 import BeautifulSoup
set_url = "*insert web address here*"
set_response = requests.get(set_url)
set_data = set_response.text
soup = BeautifulSoup(set_data)
e = soup.find("nobr")
print(e.text)
那是幾乎相同的,我使用'find_all()方法'我認爲這個問題是IM解析網頁方式。在你的例子中你的設置's =「」「....」「」''在我的程序中使用請求解析頁面。我將我的代碼添加到主要問題讓我知道你在想什麼 – user3230554
@ user3230554那麼你的代碼有什麼問題? – WKPlus