
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
csv 저장후 업로드 하고 실행했는데 에러가 나오네요.

작성한 코드 및 에러 메세지
titanic = pd.read_csv("tatanic.csv")
titanic
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-38-61e13e329477> in <cell line: 1>()
----> 1 titanic = pd.read_csv("tatanic.csv")2 titanic
4 frames
/usr/local/lib/python3.10/dist-packages/pandas/io/common.py in get_handle(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)
857 if ioargs.encoding and "b" not in ioargs.mode:
858 # Encoding
--> 859 handle = open(860 handle,
861 ioargs.mode,
FileNotFoundError: [Errno 2] No such file or directory: 'tatanic.csv'
엑셀파일 업로드후에도 같은 증상입니다. 제가 폴더 선택을 잘 못한걸 까요?
