You can upload files to Google Colaboratory by dragging and dropping, but downloading is not possible by dragging and dropping, so make a note.
from google.colab import files
filename = 'hoge.csv'
files.download(filename)
This is OK
Recommended Posts