수업외 정리
240108복습 데이터 불러오기
glenlee
2024. 1. 9. 00:00
#학생시험성적 데이터불러오기
!pip install openpyxl <=== YXL
불러오기 완료시 메시지
df = pd.read_excel("데이터경로") #excel 은 df = pd.read_excel 엑셀 파일 불러올때
df
구글 코랩에서 데이터 불러오는 방법
from google.colab import files
uploaded = files.upload()
원하는 파일 선택후
df = pd.read_excel("학생시험성적.xlsx") #excel 은 df = pd.read_excel
df