머가 문제인가요 ??




from urllib.parse import quote_plus

from bs4 import BeautifulSoup

from selenium import webdriver


baseUrl = 'https://coinmarketcap.com/ko/currencies/'

plusUrl = input('무엇을 검색할까요? : ')

url = baseUrl + quote_plus(plusUrl)


driver = webdriver.Chrome()

driver.get(url)



html = driver.page_source

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


print(soup.select_one('.priceValue___11gHJ').get_text())



하니까 되네요 ㅎㅎ