# 파일 업로드 기능 실행 | |
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