Skip to content

Instantly share code, notes, and snippets.

@roboreport
Created June 21, 2019 07:12
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 roboreport/9c4d167a64d1569d09bb095962dd70d1 to your computer and use it in GitHub Desktop.
Save roboreport/9c4d167a64d1569d09bb095962dd70d1 to your computer and use it in GitHub Desktop.
# 파일 업로드 기능 실행
from google.colab import files
uploaded = files.upload()
for fn in uploaded.keys():
print('User uploaded file "{name}" with length {length} bytes'.format(name=fn, length=len(uploaded[fn])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment