Python代碼截圖捕捉「NoneType」對象有沒有屬性「串」
什麼事?關於它?
html = """ <html><body>(html)(body)
<h1>(h1)what is the scraping(/h1)</h1>
<p>(p)To analyze a web page(/p)</p>
<p>(p)To extract the desired part(/p)</p>
(/body)(/html)</body></html> """
soup = BeautifulSoup(html, 'html.parser')
title = soup.find(id="title")
body = soup.find(id="body")
print ("title=" + title.string)
print ("body=" + body.string)
您需要正確格式化代碼並給我們一個問題來回答。 –
你的'soup.find'調用都返回None。下一次,您需要包含錯誤的完整追溯。此外,解釋你的代碼應該做什麼以及你期望的。 – idjaw
可能重複的[Python:屬性錯誤 - 'NoneType'對象沒有屬性'東西'](https://stackoverflow.com/questions/8949252/python-attribute-error-nonetype-object-has-no-attribute-東西) –