Midterm Test – Inquiry-Based Problem Solving with AI Tools

Opened: Thursday, 30 January 2025, 12:00 AM
Due: Tuesday, 25 February 2025, 10:00 PM

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)

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