xlsxwriter 튜토리얼(2)
2023. 11. 21. 21:20ㆍ개발/Xlsxwriter
728x90
반응형
XlsxWriter로 엑셀만들기
add_format을 이용하여 셀 서식 넣기
- Tutorial 2: Adding formatting to the XLSX File
import xlsxwriter
# Create a workbook and add a worksheet.
workbook = xlsxwriter.Workbook('Expenses02.xlsx')
worksheet = workbook.add_worksheet()
# Add a bold format to use to highlight cells.
bold = workbook.add_format({'bold': True})
# Add a number format for cells with money.
money = workbook.add_format({'num_format': '$#,##0'})
# Write some data headers.
worksheet.write('A1', 'Item', bold)
worksheet.write('B1', 'Cost', bold)
# Some data we want to write to the worksheet.
expenses = (
['Rent', 1000],
['Gas', 100],
['Food', 300],
['Gym', 50],
)
# Start from the first cell below the headers.
row = 1
col = 0
# Iterate over the data and write it out row by row.
for item, cost in (expenses):
worksheet.write(row, col, item)
worksheet.write(row, col + 1, cost, money)
row += 1
# Write a total using a formula.
worksheet.write(row, 0, 'Total', bold)
worksheet.write(row, 1, '=SUM(B2:B5)', money)
workbook.close()
'개발 > Xlsxwriter' 카테고리의 다른 글
xlsxwriter 셀 테두리 변경 (0) | 2023.11.23 |
---|---|
xlsxwriter 폰트(크키,색상,굵기,배경색) 변경 (0) | 2023.11.23 |
xlsxwriter 튜토리얼(3) (0) | 2023.11.21 |
xlsxwriter 튜토리얼(1) (0) | 2023.11.21 |
xlsxwriter 시작하기 (0) | 2023.11.21 |