목록Python/업무자동화 (2)
DevSSOM
엑셀 파일 불러오기 이전 글에서 만들었던 워크북에서 1부터 100까지 채운 데이터를 불러올거야. 이전 글: 2021.07.15 - [Python/업무자동화] - Python 업무자동화(RPA) - 반복문으로 여러 셀에 데이터 넣기 from openpyxl import load_workbook # 파일 불러오기 wb = load_workbook("sample.xlsx") # sample.xlsx 파일에서 워크북을 불러옴 ws = wb.active # 활성화된 시트 # cell 데이터 불러오기 for x in range(1, 11): for y in range(1, 11): print(ws.cell(row=x, column=y).value, end=" ") # end=" " : 셀 하나에 한 줄이 아니라, ..
반복문으로 랜덤 숫자 데이터 넣기 # 먼저 random import 하기 from random import * for x in range(1, 11): # 10개 row for y in range(1, 11): # 10개 column ws.cell(row=x, column=y, value=randint(0, 100)) # 0 ~ 100 사이의 숫자 반복문과 인덱스로 1부터 100까지 채우기 index = 1 for x in range(1, 11): # 10개 row for y in range(1, 11): # 10개 column # ws.cell(row=x, column=y, value=randint(0, 100)) # 0 ~ 100 사이의 숫자 ws.cell(row=x, column=y, value=i..