from google.colab import files
data = files.upload()
Import pandas as pd
data = pd.read_csv("path/to/your/file.csv")
Import csv
with open('file.csv', 'r') as f:
data = list(csv.reader(f, delimiter=','))
What's happening in the script above?
Kevin Regan
Have an article, idea, found a typo, want to contribute? Shoot me an email
Here
Below are links to some Udemy Data Science Courses. I've been using Udemy for a number of years now, and I've found their courses super helpful, maybe you will also.