'목록하단 광고 치환자(withSeok)
728x90

 

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

+ Recent posts