
출력이 None이라고 나옵니다.
튜터님의 강의에서는 a링크가 나오는걸로 확인을 했는데요. 어떤 오류가 있는 걸까요..?ㅠㅠ

파란색 선택되어있는 코드를 copy->copy selector 하였습니다.
그리고 title = soup.select_one('해당코드 붙여넣었습니다')
작성한 코드 및 에러 메세지
import requests
from bs4 import BeautifulSoup
URL = "https://movie.daum.net/ranking/reservation"
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(URL, headers=headers)
soup = BeautifulSoup(data.text, 'html.parser')
title = soup.select_one('#mor_history_id_0 > div > div.flipsnap_view > div > div:nth-child(1) > c-flicking-item > c-layout > div > c-list-doc > ul > li:nth-child(1) > c-doc > div > div.item-bundle-mid > div.item-title > c-title > strong > a')
print(title)
출력값->>>None
