■ 현재-ing/ㅡPython

Python 구글 Colaboratory #A020 : 내 파일 업로드 또는 구글드라이브 파일열기

with seok 2022. 8. 30. 08:07

 

A020

from google colab import files
ws_file = files.upload()

 

A021

import io
import pandas as pd
 

 

A022

data=pd.read_csv(io.BytesIO(ws_file['ex020csv.csv']), encoding='cp949')
enconding='cp949'는 한글 깨짐 현상을 위한 추가내용이다.

 

A023

data.head()

 

A024
구글 드라이브에 파일

 

A025

우측 메뉴 클릭
파일을 찾아 경로복사 클릭

 

A026

filename = '복사한 경로'

data = pd.read_csv( filename, enconding='cp949')

data.head()

 

728x90