ValueErrorを解決するにはリストに問題はありませんか?自分のコードに何が間違っているのか分かりません。ValueErrorがリストに含まれていません。それはリストにあります
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://uk.reuters.com/business/quotes/financialHighlights? symbol=AAPL.O")
bsObj = BeautifulSoup(html,"html.parser")
tag = bsObj.findAll("td")
tagList = []
for tagItem in tag:
tagList.append(tagItem)
print(tagList.index("<td>Dec</td>"))
エラー:
Traceback (most recent call last):
File "/Users/home/Desktop/development/x/code.py", line 11, in <module>
print(tagList.index("<td>Dec</td>"))
ValueError: '<td>Dec</td>' is not in list
Process finished with exit code 1
'タグの中にタグ: 'は混乱しています。 –
OK、tagをtagItemで置き換えるコードを更新します。ありがとう! –