python - Pandas unable to read csv in current directory in Jupyter -
forgive me if simple i'm new python , having trouble reading csv pandas through both:
df = pd.read_csv(os.path.abspath(os.path.curdir)+r"\test.csv")
and
df = pd.read_csv("test.csv")
i'm running python 3.6 , i've managed import csvs pandas fine spyder's ipython terminal.
nevermind, turns out error because of corrupted character in csv
Comments
Post a Comment