
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
좌측에 관리종목 파일을 넣고 실행을 했는데 에러 발생했어요.
보고 계신 화면 전체를 캡처

해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
import openpyxl
wb = openpyxl.load_workbook('관리종목.xlsx')
sheet = wb['종목']
new_rows = list(sheet.rows)[1:]
for row in new_rows:
print(row[0].value, row[1].value)
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-18-33dfc1112ff9> in <module>
1 import openpyxl
----> 2 wb = openpyxl.load_workbook('관리종목.xlsx')
3 sheet = wb['종목']
4
5 new_rows = list(sheet.rows)[1:]
3 frames
/usr/lib/python3.8/zipfile.py in __init__(self, file, mode, compression, allowZip64, compresslevel, strict_timestamps)
1249 while True:
1250 try:
-> 1251 self.fp = io.open(file, filemode)
1252 except OSError:
1253 if filemode in modeDict:
FileNotFoundError: [Errno 2] No such file or directory: '관리종목.xlsx'
