
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
과제 정답 코드를 노션에서 그대로 복사해서 붙여넣기 했는데도 오류가 뜹니다.

import openpyxl
import urllib.request
wb = openpyxl.load_workbook('관리종목.xlsx')
sheet = wb['종목']
new_rows = list(sheet.rows)[1:]
for row in new_rows:
url = f'https://ssl.pstatic.net/imgfinance/chart/item/area/year3/{row[1].value}.png'
urllib.request.urlretrieve(url, f"imgs/{row[0].value}.png")
---- 오류 결과창
--------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-13-ee36528f748c> in <module>
2 import urllib.request
3
----> 4 wb = openpyxl.load_workbook('관리종목.xlsx')
5 sheet = wb['종목']
6
3 frames
/usr/lib/python3.9/zipfile.py in __init__(self, file, mode, compression, allowZip64, compresslevel, strict_timestamps) 1246 while True: 1247 try: -> 1248 self.fp = io.open(file, filemode) 1249 except OSError: 1250 if filemode in modeDict:
FileNotFoundError: [Errno 2] No such file or directory: '관리종목.xlsx'
