리뷰 별점과 도움 수 데이터를 추가 수집하기 위해서 기존의 웹 크롤링 코드를 약간 수정하였다. Since I decided to collect rating and helpfulness data from the Sephora webpage, I slightly changed the web crawling code. 1. Import necessary packages. import time import openpyxl from openpyxl import Workbook import random from selenium import webdriver from selenium.webdriver.chrome.options import Options 2. Web crawling wb = Workbook(write..