
아래 코드로 3주차 숙제 진행중에 궁금한점이 생겨 문의드립니다.
import requests
from bs4 import BeautifulSoup
headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'}
data = requests.get('https://www.genie.co.kr/chart/top200?ditc=M&rtm=N&ymd=20210701',headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
trs = soup.select('#body-content > div.newest-list > div > table > tbody > tr')
for tr in trs:
rank = tr.select_one('td.number').text[0:2].strip()
title = tr.select_one('a.title').text.strip()
artist = tr.select_one('a.artist').text.strip()
print(rank, title, artist)
위 코드로 콘솔창에 실행하면 아래 이미지처럼 나오는데
19금 딱지를 어떻게 떼면 좋을까요 ?? ㅎㅎ;

