1
我是BeautifulSoup的新手,剛剛創建了我的第一個腳本。下面是一個代碼位的是沒有得到我期望的結果:BeautifulSoup - 看似簡單的情況下的解析問題
html = """<a href="http://www.example.com"><b>Text</b> and more text</a>"""
exampleSoup = BeautifulSoup(html, "html.parser")
print exampleSoup.a.string
我期待獲得...
<b>Text</b> and more text
但即時得到「無」。我錯誤地假設了什麼?
我對html變量進行了診斷,但(如預期的),這似乎不是一個解析問題,因爲一切都與它最初的字符串相同。