Skip to content

Instantly share code, notes, and snippets.

@wikibook
Created November 30, 2020 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wikibook/11e421b686a6d778dcbd5e294ded4725 to your computer and use it in GitHub Desktop.
Save wikibook/11e421b686a6d778dcbd5e294ded4725 to your computer and use it in GitHub Desktop.
for excel_file in excel_files:
# 각 엑셀 파일의 데이터 가져오기
df = pd.read_excel(excel_file)
# 세로 방향으로 연결하기. 순차적으로 index 증가
total_df = total_df.append(df, ignore_index= True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment