我在做一個簡單的報廢器,看看我是否可以從我製作的HTML中獲得所需的輸入值。它始終顯示無作爲答案,所以我用更簡單的東西簽入,在html中的< title>。爲什麼BeautifulSoup沒有在HTML中顯示標題
from bs4 import BeautifulSoup # parsing
r = open("C:/Python27/Pruebas/pruebahtml.html")
print(r.read())
soup = BeautifulSoup(r,"html.parser")
title = soup.title
print(title)
r.close()
但我仍然得到無作爲一個答案,我也用的findAll,find_all,找到要做到這一點,但我得到了一些錯誤。有誰知道我的錯誤在哪裏?
相關:http://stackoverflow.com/questions/3906137/why-cant-i-call-read-twice-on-an-open-file。 – alecxe
謝謝,我忘了 現在我的問題是..如果用戶在HTML中輸入並單擊按鈕,我可以讀取他/她使用此輸入? –