728x90 반응형 iter_cols1 [Openpyxl] 3. Cell 영역 3. Cell 영역 1줄씩 데이터 넣기 from openpyxl import Workbook from random import * wb = Workbook() # 새 워크북 생성 ws = wb.active # 현재 활성화된 Sheet를 가져옴 # 1줄씩 데이터 넣기 ws.append(["번호", "영어", "수학"]) for i in range(1, 11): ws.append([i, randint(0, 100), randint(0, 100)]) append : 첫 행부터 차례로 아래 방향으로 삽입. 특정 셀 영역 가져오기 영어 열 가져오기 col_B = ws["B"] # 영어 column만 가져오기 # print(col_B) for cell in col_B: print(cell.value) 영어 44 3.. 2024. 1. 24. 이전 1 다음 728x90 반응형