반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- list
- SQL
- Apache
- math
- Google Spreadsheet
- c#
- array
- Redshift
- Java
- gas
- Excel
- GIT
- Python
- google apps script
- PostgreSQL
- Github
- PySpark
- hive
- dataframe
- numpy
- string
- Kotlin
- Tkinter
- django
- 파이썬
- Google Excel
- matplotlib
- Mac
- PANDAS
Archives
- Today
- Total
달나라 노트
Python Pandas & openpyxl : font (글자 서식 설정) 본문
728x90
반응형
cell 객체의 font 옵션을 사용하면 cell에 담길 문자의 서식을 설정할 수 있습니다.
import pandas as pd
from openpyxl.styles import Font
dict_test = {
'col1': [1, 2, 3, 4, 5],
'col2': ['apple', 'banana', 'cloud', 'drizzle', 'electron'],
'col3': [1234, 0.27383720, 39372, None, 102947291.293472],
'col4': [0.9, 0.5238, 0.13, 0.0028, 1024.29278],
}
df_test = pd.DataFrame(dict_test)
xlsx_writer = pd.ExcelWriter('test.xlsx', engine='openpyxl')
df_test.to_excel(xlsx_writer, sheet_name='test', index=False)
worksheet = xlsx_writer.sheets['test']
cell = worksheet['B3'] # B3 cell의 객체를 가져옴
cell.font = Font(
size=30, # 글자 크기 30으로 설정
bold=True, # 두꺼운 글씨 적용 (False일 경우 미적용.)
italic=True, # italic체 적용 (False 일 경우 미적용.)
strikethrough=True, # 가로선 적용 (False 일 경우 미적용.)
underline='double', # double 형태의 밑줄 적용
color='ffa1ca80' # 글자 색상 설정
)
xlsx_writer.close()
위 코드의 결과는 다음과 같습니다.
B3 cell에 서식이 적용된 것이 보일겁니다.
underline에 전달 가능한 형식들
underline = {'double', 'single', 'doubleAccounting', 'singleAccounting'}
728x90
반응형
'Python > Python Pandas' 카테고리의 다른 글
Python Pandas & openpyxl : column width autofit (column 너비 자동맞춤) (0) | 2024.02.26 |
---|---|
Python Pandas & openpyxl : columns, rows (column에 대한 객체 얻어오기, row에 대한 객체 얻어오기) (0) | 2024.02.26 |
Python Pandas & openpyxl : fill (셀에 색상 채우기) (0) | 2024.02.26 |
Python Pandas & openpyxl : border (셀의 테두리 설정) (0) | 2024.02.26 |
Python Pandas & openpyxl : number_format (숫자의 format 정하기) (0) | 2024.02.26 |
Comments