I am using Google Colab for reading my jupyter notebooks from Google Drive. I opened an exisiting notebook and while reading the csv file, I got an error. Both my notebook and csv file are in the same location - please see screenshot. I am working with the Practice_1_of_5,ipynb notebook and reading bands.csv file.
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
data= pd.read_csv('bands.csv', header = none)
data.head()
What could be the issue?
