Answers for "read_csv in google colab"

18

python read csv

# pip install pandas 
import pandas as pd

# Read the csv file
data = pd.read_csv('data.csv')

# Print it out if you want
print(data)
Posted by: Guest on October-03-2020
7

upload file in colab

from google.colab import files
files.upload()
Posted by: Guest on May-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language