
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
안녕하세요!
엑셀 읽기 부분에서 코드스니펫을 그대로 복사했는데 에러가 나옵니다.

[입력 코드]
import openpyxl
wb = openpyxl.load_workbook('샘플파일.xlsx')
sheet = wb['Sheet']
sheet['A1'].value
[오류 코드]
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-28-f5d21de52ff8> in <cell line: 2>()
1 import openpyxl
----> 2 wb = openpyxl.load_workbook('샘플파일.xlsx')
3 sheet = wb['Sheet']
4
5 sheet['A1'].value
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'
[해봤던 방법]
from google.colab import files
uploades = files.upload()
-> 입력 후 파일 업로드 해도 안 됨.
ㄷㅏ른 수강생분이 올리셨던 글에 답변해주셨던걸 보고 오류가 없었다는 파일 다운로드 후에도 실행해봤는데 되질 않습니다 ㅠ_ㅠ
