Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nafeesb/1fe19c1d3f085833ac99cf4d53908322 to your computer and use it in GitHub Desktop.
Save nafeesb/1fe19c1d3f085833ac99cf4d53908322 to your computer and use it in GitHub Desktop.
Upload Dataset on Google Colaboratory.
#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