Reading a file using google colab

Following the video below and trying to use Google Colab to load a file. I put both the notebook and file to the same google drive folder. But the notebook is unable to load the file. Is there a trick to it?

filepath = 'btc-market-price.csv'

with open(filepath, 'r') as reader:
    print(reader)

In the sidetab of the notebook you have to activate the option that allows it to actually access your drive.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.