GuessedAtParserWarning가 뜨고 r의 타입이 다르게 나옵니다
(사진)답변 감사합니다!from urllib.parse import quote_plusfrom bs4 import BeautifulSoupfrom selenium import webdriverbaseUrl = "https://www.google.com/search?q="plusUrl = input("무엇을 검색할까요? : ")url = baseUrl + quote_plus(plusUrl)driver = webdriver.Chrome()driver.get(url)html = driver.page_sourcesoup = BeautifulSoup(html)r = soup.select(".r")print(type(r))