DevSSOM
Python 업무자동화(RPA) - 반복문으로 여러 셀에 데이터 넣기 본문
반응형
반복문으로 랜덤 숫자 데이터 넣기
# 먼저 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=index)
index += 1
728x90
반응형
'Python > 업무자동화' 카테고리의 다른 글
Python 업무자동화(RPA) - 엑셀 파일 불러오기 (0) | 2021.07.16 |
---|
댓글