excel 파일 불러오는 법
- import pandas as pd
- pd.read_excel("파일저장.xlsx")
이미 있는 .xlsx 파일 지우기.
파일 업로드, 여러개 선택 가능.
- from google.colab import files
- uploaded = files.upload()
for으로 여러파일 불러오기.
- for fn in uploaded.keys():
workbook=pd.read_excel(fn)
파일 다운로드
- with pd.ExcelWriter('파일 이름') as writer:
데이터.to_excel(writer, sheet_name='저장하고 싶은 sheet 이름')
- files.download('파일 이름')
출처: https://arumyworld.tistory.com/7