pandas는 두 개의 excel의sheet를 다른 표에 통합합니다

2320 단어
pandas는 두 개의 excel의sheet를 다른 표에 통합합니다
import pandas as pd

def combine_excel(file_path1,file_path2,target_path):
	# 
	data1 = pd.read_excel(file_path1)
	data2 = pd.read_excel(file_path2)
	target_file = pd.ExcelWriter(target_path)

	data1.to_excel(result,sheet_name = "sheetname1",index = False)
	data2.to_excel(result,sheet_name = "sheetname2",index = False)

	return result
# 
combine(file_path1,file_path2,target_path)
result.save()

좋은 웹페이지 즐겨찾기