Skip to content

Instantly share code, notes, and snippets.

@funwarioisii
Last active January 11, 2018 07:23
Show Gist options
  • Save funwarioisii/61acb70d526ab2eb9ef28a63b72d9d33 to your computer and use it in GitHub Desktop.
Save funwarioisii/61acb70d526ab2eb9ef28a63b72d9d33 to your computer and use it in GitHub Desktop.
Colaboratoryでファイルを開く
import google.colab
f = google.colab.files.upload() # ここでFinderやエクスプローラが立ち上がり,ファイルを選択できる
# f[filename]でアップロードした値が取れる 画像など未検証
# 例えば'test.csv'を読み込んだ時は以下のように書くとバイト文字列が出力される
f['test.csv']
# UTF-8にして改行コードごとに区切って配列とするならこう
f['test.csv'].decode('utf-8').split('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment