Last active
January 11, 2018 07:23
-
-
Save funwarioisii/61acb70d526ab2eb9ef28a63b72d9d33 to your computer and use it in GitHub Desktop.
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
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