
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
train.csv 파일은 다운로드 디렉토리에 정상적으로 다운로드 되었고
colab 에서 업로드도 했습니다.
titanic = pd.read_table('train.csv',sep=',') 코드 입력하면 에러나는 이유가 뭘까요?

고 계신 화면 전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
titanic = pd.read_table('train.csv',sep=',')
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-21-662c149f6dce> in <cell line: 2>()
1 import pandas as pd
----> 2 titanic = pd.read_table('train.csv',sep=',')
6 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)
854 if ioargs.encoding and "b" not in ioargs.mode:
855 # Encoding
--> 856 handle = open(
857 handle,
858 ioargs.mode,
FileNotFoundError: [Errno 2] No such file or directory: 'train.csv'
