본문 바로가기
개발일기/파이썬

python 엑셀 쓰기

by 프로그래머콩 2019. 7. 4.
 wb = Workbook()

    # 파일 이름을 정하고, 데이터를 넣을 시트를 활성화합니다.
    sheet1 = wb.active

    ex_file_name = 'list' + '.xlsx'

    # 시트의 이름을 정합니다.
    sheet1.title = 'sampleSheet'

    field = ['a','b','c','d']

    # cell 함수를 이용해 넣을 데이터의 행렬 위치를 지정해줍니다.
    for row_index in range(1, len(field)):
        sheet1.cell(row=1, column=row_index).value = field[row_index]

wb.save(filename=ex_file_name)

[출처]python 엑셀 쓰기|작성자프로그래머콩