Midterm Test – Inquiry-Based Problem Solving with AI Tools

Ouvert le : vendredi 30 mai 2025, 00:00
À rendre : mercredi 25 juin 2025, 22:00

Download complete instructions here.

Tips: How do I load files from Google Drive using Python from Google colab?

Suppose you have a file: grade.cvs in your Google driver /EDD/dataset folder

------------------------------------

!pip install google-colab

#Step 1: Mounting Google Drive

from google.colab import drive
drive.mount('/content/drive')
#Step 2: Accessing the File
import pandas as pd
dataset = pd.read_csv('/content/drive/MyDrive/EDD/dataset/grade.cvs')
print(dataset)

-----------------