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))