Forked from sagarhowal/upload_and_read_colaboratory.py
Created
March 13, 2018 07:22
-
-
Save nafeesb/1fe19c1d3f085833ac99cf4d53908322 to your computer and use it in GitHub Desktop.
Upload Dataset on Google Colaboratory.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Uploading the Dataset | |
from google.colab import files | |
uploaded = files.upload() | |
#Save uploaded file on the Virtual Machine's | |
#Thanks to user3800642 from StackOverflow | |
with open("breast_cancer.csv", 'w') as f: | |
f.write(uploaded[uploaded.keys()[0]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment