fortrin trs:
a_tag = tr.select_one('td.title > div > a')
if a_tag is not None:
title = a_tag.text
๋ณ์ = star
for tr in trs:
a_tag = tr.select_one('td.title > div > a')
if a_tag is not None:
star = tr.select_one('td.point').text
์ ๋ฆฌํ๋ฉด
for tr in trs:
a_tag = tr.select_one('td.title > div > a')
if a_tag is not None:
rank = tr.select_one('td:nth-child(1) > img')[alt]
title = a_tag.text
star = tr.select_one('td.point').text
print(rank, title, star)