第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法獲取 HTML 標(biāo)簽內(nèi)的數(shù)據(jù)

無法獲取 HTML 標(biāo)簽內(nèi)的數(shù)據(jù)

森林海 2021-06-06 07:50:38
無法獲取 HTML 標(biāo)簽“alt”= 內(nèi)的數(shù)據(jù)from bs4 import BeautifulSoupimport resoup=BeautifulSoup("""<div class="couponTable">    <div id="tgCou1" class="tgCoupon couponRow"><span class="spBtnMinus"></span><!-- react-text: 67 -->Wednesday Matches<!-- /react-text --></div>    <div class="cflag"><img src="/ContentServer/jcbw/images/flag_JLC.gif?CV=L302R1g" alt="Japanese League Cup" title="Japanese League Cup" class="cfJLC"></div>    <div class="cflag"><img src="/ContentServer/jcbw/images/flag_JLC.gif?CV=L302R1g" alt="Japanese League Cup" title="Japanese League Cup" class="cfJLC"></div>    </div></div></div>""")lines=soup.find_all('div')line in lines:print(re.findall('\w+',line['alt'])[0])
查看完整描述

1 回答

?
catspeake

TA貢獻(xiàn)1111條經(jīng)驗(yàn) 獲得超0個(gè)贊

如果您只需要該alt值,那么您最好獲取img標(biāo)簽而不是div標(biāo)簽。也不需要使用正則表達(dá)式來提取alt值


from bs4 import BeautifulSoup

import re

soup=BeautifulSoup("""<div class="couponTable">

<div id="tgCou1" class="tgCoupon couponRow"><span class="spBtnMinus"></span><!-- react-text: 67 -->Wednesday Matches<!-- /react-text --></div>

<div class="cflag"><img src="/ContentServer/jcbw/images/flag_JLC.gif?CV=L302R1g" alt="Japanese League Cup" title="Japanese League Cup" class="cfJLC"></div>

<div class="cflag"><img src="/ContentServer/jcbw/images/flag_JLC.gif?CV=L302R1g" alt="Japanese League Cup" title="Japanese League Cup" class="cfJLC"></div>

</div></div></div>""",'html.parser')


lines=soup.find_all('img')

for line in lines:

    print(line['alt'])

輸出


日本聯(lián)賽杯

日本聯(lián)賽杯


查看完整回答
反對(duì) 回復(fù) 2021-06-09
  • 1 回答
  • 0 關(guān)注
  • 145 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)