xxxxxxxxxx
List_of_dataframes = pd.read_html('https://en.wikipedia.org/wiki/ISO_3166-1')
xxxxxxxxxx
import requests
from bs4 import BeautifulSoup as bs
page = requests.get("https://library.gabia.com/")
soup = bs(page.text, "html.parser")
elements = soup.select('div.esg-entry-content a > span')
for index, element in enumerate(elements, 1):
print("{} 번째 게시글의 제목: {}".format(index, element.text))