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
'■ 현재-ing > ㅡPython' 카테고리의 다른 글
Python 구글 Colaboratory #A040 : input 자료추가 (0) | 2022.09.02 |
---|---|
Python 구글 Colaboratory #A030 : 간단한 리스트 출력 및 추가 (0) | 2022.09.02 |
Python 구글 Colaboratory #A010 : 기본 텍스트 코딩 및 코랩단축키 (0) | 2022.08.30 |
Python 구글 Colaboratory #A001 : 구글 드라이브에 설치 (0) | 2022.08.29 |
파이썬 (커맨드모드, 에디터모드) (0) | 2021.08.18 |