inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

hyohead2님의 게시글

hyohead2 hyohead2

@hyohead24936

수강평 작성수
-
평균평점
-

게시글 1

질문&답변

GuessedAtParserWarning가 뜨고 r의 타입이 다르게 나옵니다

답변 감사합니다! from urllib.parse import quote_plus from bs4 import BeautifulSoup from selenium import webdriver baseUrl = "https://www.google.com/search?q=" plusUrl = input ( " 무엇을 검색할까요 ? : " ) url = baseUrl + quote_plus(plusUrl) driver = webdriver.Chrome() driver.get(url) html = driver.page_source soup = BeautifulSoup(html) r = soup.select( ".r" ) print ( type (r))

좋아요수
0
댓글수
2
조회수
724