Answers for "read csv file colab"

7

upload file in colab

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

how to read a csv file in colab

import pandas as pd
df = pd.read_csv("(Path to file)")
Posted by: Guest on October-07-2021

Browse Popular Code Answers by Language