“CSV aberto em CoalB” Respostas de código

Faça o upload de arquivo em colab

from google.colab import files
files.upload()
Bored Coder

CSV aberto em CoalB

#if csv file already uploaded in drive:-

from google.colab import drive
drive.mount('/content/drive')

#to read csv using numpy (only num data)
import numpy as np
data = np.genfromtxt('/content/drive/MyDrive/whatever location',delimiter=',',skip_header=1)

Sad Santa

Respostas semelhantes a “CSV aberto em CoalB”

Perguntas semelhantes a “CSV aberto em CoalB”

Mais respostas relacionadas para “CSV aberto em CoalB” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código