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

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

BeautifulSoup find() takes no keyword arguments 錯(cuò)誤

BeautifulSoup find() takes no keyword arguments 錯(cuò)誤

海綿寶寶撒 2023-03-22 16:08:52
from bs4 import BeautifulSoupfrom selenium import webdriverimport time import sysquery_txt = input("???? ?? ?? :")path = "C:\Temp\chromedriver_240\chromedriver.exe"driver = webdriver.Chrome(path)driver.get("https://www.naver.com")time.sleep(2)driver.find_element_by_id("query").send_keys(query_txt)driver.find_element_by_id("search_btn").click()driver.find_element_by_link_text("??? ???").click()full_html = driver.page_sourcesoup = BeautifulSoup(full_html, 'html.parser')content_list = soup.find('ul', id='elThumbnailResultArea')print(content_list)content = content_list.find('a','sh_blog_title _sp_each_url _sp_each_title' ).get_text()print(content)for i in content_list:       con = i.find('a', class_='sh_blog_title _sp_each_url _sp_each_title').get_text()    print(con)    print('\n')我在觀看在線學(xué)習(xí)時(shí)輸入了這段代碼,但在循環(huán)中它總是出錯(cuò)。con = i.find('a', class_='sh_blog_title _sp_each_url _sp_each_title').get_text() 這一行顯示錯(cuò)誤 'find() 沒有關(guān)鍵字參數(shù)'
查看完整描述

2 回答

?
慕桂英3389331

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

問題是,您必須使用.find_all()來獲取所有<a>標(biāo)簽。.find()只返回一個(gè)標(biāo)簽(如果有的話):


import requests

from bs4 import BeautifulSoup



url = 'https://search.naver.com/search.naver?query=tree&where=post&sm=tab_nmr&nso='

full_html = requests.get(url).content


soup = BeautifulSoup(full_html, 'html.parser')

content_list = soup.find_all('a', class_='sh_blog_title _sp_each_url _sp_each_title' )

? ??

for i in content_list:

? ? print(i.text)

? ? print('\n')

查看完整回答
反對(duì) 回復(fù) 2023-03-22
?
ABOUTYOU

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

改用.find('a', attrs={"class": "<Class name>"})。


查看完整回答
反對(duì) 回復(fù) 2023-03-22
  • 2 回答
  • 0 關(guān)注
  • 530 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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