前提
htmlのspanの前"7497"が位置する文字を数字として取り出したい。
"7,497" 円実現したいこと
目的の文字が数値として取り出せない
None が得られるのみ
該当のソースコード
Python3.10
ソースコード
html=urlopen(url)
soup=BeautifulSoup(html,"html.parser")
p=soup.find_all("div",class_="md_target_box_price")
for g in p:
price_target=g.string
print(price_target)
0 コメント