■ PatternFill 클래스의 생성자에서 start_color/end_color/fill_type 인자를 사용해 PatternFill 객체를 만드는 방법을 보여준다.
▶ main.py
1 2 3 4 5 |
from openpyxl.styles import PatternFill patternFill = PatternFill(start_color = "ffff00", end_color = "ffff00", fill_type = "solid") |
▶ requirements.txt
1 2 3 4 |
et_xmlfile==2.0.0 openpyxl==3.1.5 |
※ pip install openpyxl 명령을 실행했다.