1#if csv file already uploaded in drive:-
2
3from google.colab import drive
4drive.mount('/content/drive')
5
6#to read csv using numpy (only num data)
7import numpy as np
8data = np.genfromtxt('/content/drive/MyDrive/whatever location',delimiter=',',skip_header=1)
9
10